ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / manuel / default.nix
blob7bf02f03895b2e235e1610b503d0f9538e167c65
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , six
6 , zope_testing
7 }:
9 buildPythonPackage rec {
10   pname = "manuel";
11   version = "1.12.4";
12   disabled = isPy27;
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-A5Wq32mR+SSseVz61Z2l3AYYcyqMxYrQ9HSWWrco9/Q=";
17   };
19   propagatedBuildInputs = [ six ];
20   checkInputs = [ zope_testing ];
22   meta = with lib; {
23     description = "A documentation builder";
24     homepage = "https://pypi.python.org/pypi/manuel";
25     license = licenses.zpl20;
26   };