Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 28 lines 520 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, six 6, zope_testing 7}: 8 9buildPythonPackage rec { 10 pname = "manuel"; 11 version = "1.10.1"; 12 disabled = isPy27; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "1bdzay7j70fly5fy6wbdi8fbrxjrrlxnxnw226rwry1c8a351rpy"; 17 }; 18 19 propagatedBuildInputs = [ six ]; 20 checkInputs = [ zope_testing ]; 21 22 meta = with stdenv.lib; { 23 description = "A documentation builder"; 24 homepage = https://pypi.python.org/pypi/manuel; 25 license = licenses.zpl20; 26 }; 27 28}