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