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/manuel/default.nix

28 lines
511 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
, zope_testing
}:
buildPythonPackage rec {
pname = "manuel";
version = "1.11.2";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-nJt3WMQ66oa3VlW5InJCzOea96Wf7WwxSbBp9WIfzqc=";
};
propagatedBuildInputs = [ six ];
checkInputs = [ zope_testing ];
meta = with lib; {
description = "A documentation builder";
homepage = "https://pypi.python.org/pypi/manuel";
license = licenses.zpl20;
};
}