summary refs log tree commit diff
path: root/pkgs/development/python-modules/manuel/default.nix
blob: 2f14ed863c3eb31d5772c8b4e20a23aeb23e6abd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
, zope_testing
}:

buildPythonPackage rec {
  pname = "manuel";
  version = "1.10.1";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bdzay7j70fly5fy6wbdi8fbrxjrrlxnxnw226rwry1c8a351rpy";
  };

  propagatedBuildInputs = [ six ];
  checkInputs = [ zope_testing ];

  meta = with lib; {
    description = "A documentation builder";
    homepage = "https://pypi.python.org/pypi/manuel";
    license = licenses.zpl20;
  };

}