2018-10-15 22:21:25 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-10-17 16:36:13 +01:00
|
|
|
, isPy27
|
2018-10-15 22:21:25 +01:00
|
|
|
, six
|
|
|
|
, zope_testing
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "manuel";
|
2018-11-26 11:29:46 +00:00
|
|
|
version = "1.10.1";
|
2019-10-17 16:36:13 +01:00
|
|
|
disabled = isPy27;
|
2018-10-15 22:21:25 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-26 11:29:46 +00:00
|
|
|
sha256 = "1bdzay7j70fly5fy6wbdi8fbrxjrrlxnxnw226rwry1c8a351rpy";
|
2018-10-15 22:21:25 +01:00
|
|
|
};
|
|
|
|
|
2018-11-26 11:29:46 +00:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
checkInputs = [ zope_testing ];
|
2018-10-15 22:21:25 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A documentation builder";
|
|
|
|
homepage = https://pypi.python.org/pypi/manuel;
|
|
|
|
license = licenses.zpl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|