nixpkgs/pkgs/development/python-modules/alabaster/default.nix
2020-04-10 17:54:53 +01:00

24 lines
501 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pygments }:
buildPythonPackage rec {
pname = "alabaster";
version = "0.7.12";
src = fetchPypi {
inherit pname version;
sha256 = "a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02";
};
propagatedBuildInputs = [ pygments ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/bitprophet/alabaster";
description = "A Sphinx theme";
license = licenses.bsd3;
};
}