889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
28 lines
511 B
Nix
28 lines
511 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, six
|
|
, zope_testing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "manuel";
|
|
version = "1.12.4";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-A5Wq32mR+SSseVz61Z2l3AYYcyqMxYrQ9HSWWrco9/Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
checkInputs = [ zope_testing ];
|
|
|
|
meta = with lib; {
|
|
description = "A documentation builder";
|
|
homepage = "https://pypi.python.org/pypi/manuel";
|
|
license = licenses.zpl20;
|
|
};
|
|
|
|
}
|