Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / alabaster / default.nix
blobb2b77a34c8810d52b7985892ff2ec531015741cd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flit-core
5 , pygments
6 }:
8 buildPythonPackage rec {
9   pname = "alabaster";
10   version = "0.7.16";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-dai5nCil2tUN1/jM3UR6Eh3bOJLanlPRylzKMQbVjWU=";
16   };
18   nativeBuildInputs = [ flit-core ];
20   propagatedBuildInputs = [ pygments ];
22   # No tests included
23   doCheck = false;
25   meta = with lib; {
26     homepage = "https://github.com/bitprophet/alabaster";
27     description = "A Sphinx theme";
28     license = licenses.bsd3;
29   };