1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, six 6, zope_testing 7}: 8 9buildPythonPackage rec { 10 pname = "manuel"; 11 version = "1.12.4"; 12 disabled = isPy27; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "sha256-A5Wq32mR+SSseVz61Z2l3AYYcyqMxYrQ9HSWWrco9/Q="; 17 }; 18 19 propagatedBuildInputs = [ six ]; 20 checkInputs = [ zope_testing ]; 21 22 meta = with lib; { 23 description = "A documentation builder"; 24 homepage = "https://pypi.python.org/pypi/manuel"; 25 license = licenses.zpl20; 26 }; 27 28}