blob: 84b7c2f49dca6cecd92be6446c261c613d72aa4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
sphinx,
}:
buildPythonPackage rec {
pname = "piccolo-theme";
version = "0.24.0";
format = "setuptools";
src = fetchPypi {
pname = "piccolo_theme";
inherit version;
hash = "sha256-Cc9w9Lttuk680UlmVQwpIznBHZMclTMiHNPb/+sdG9k=";
};
dependencies = [ sphinx ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "piccolo_theme" ];
meta = {
description = "Clean and modern Sphinx theme";
homepage = "https://piccolo-theme.readthedocs.io";
changelog = "https://github.com/piccolo-orm/piccolo_theme/releases/tag/${version}";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ loicreynier ];
};
}
|