Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / manuel / default.nix
blob2f14ed863c3eb31d5772c8b4e20a23aeb23e6abd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , six
6 , zope_testing
7 }:
9 buildPythonPackage rec {
10   pname = "manuel";
11   version = "1.10.1";
12   disabled = isPy27;
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1bdzay7j70fly5fy6wbdi8fbrxjrrlxnxnw226rwry1c8a351rpy";
17   };
19   propagatedBuildInputs = [ six ];
20   checkInputs = [ zope_testing ];
22   meta = with lib; {
23     description = "A documentation builder";
24     homepage = "https://pypi.python.org/pypi/manuel";
25     license = licenses.zpl20;
26   };