mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
501 B
Nix
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;
|
|
};
|
|
}
|