1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/python-modules/alabaster/default.nix
2017-07-19 16:43:01 +07:00

25 lines
530 B
Nix

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