Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / alabaster / default.nix
blob31f9e14f6da8a6d71109c54ac3e724c13b88bbba
1 { lib, buildPythonPackage, fetchPypi
2 , pygments }:
4 buildPythonPackage rec {
5   pname = "alabaster";
6   version = "0.7.13";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-onpKCE1eaQ4W4B4DrSsuVSxhplRpQZuQckMZPeGoSuI=";
11   };
13   propagatedBuildInputs = [ pygments ];
15   # No tests included
16   doCheck = false;
18   meta = with lib; {
19     homepage = "https://github.com/bitprophet/alabaster";
20     description = "A Sphinx theme";
21     license = licenses.bsd3;
22   };