depot/third_party/nixpkgs/pkgs/development/python-modules/alabaster/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
491 B
Nix

{ lib, 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 lib; {
homepage = "https://github.com/bitprophet/alabaster";
description = "A Sphinx theme";
license = licenses.bsd3;
};
}