My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/alabaster/default.nix

23 lines
491 B

{ 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;
};
}