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