nixpkgs/pkgs/development/python-modules/alabaster/default.nix

24 lines
499 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pygments }:
buildPythonPackage rec {
pname = "alabaster";
2018-06-21 05:37:15 +00:00
version = "0.7.11";
src = fetchPypi {
inherit pname version;
2018-06-21 05:37:15 +00:00
sha256 = "b63b1f4dc77c074d386752ec4a8a7517600f6c0db8cd42980cae17ab7b3275d7";
};
propagatedBuildInputs = [ pygments ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/bitprophet/alabaster;
description = "A Sphinx theme";
license = licenses.bsd3;
};
}