ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / paver / default.nix
blob8721ef3dd6015ebc313f980743892456f4ba1135
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , cogapp
6 , mock
7 , virtualenv
8 }:
10 buildPythonPackage rec {
11   version = "1.3.4";
12   pname   = "Paver";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "d3e6498881485ab750efe40c5278982a9343bc627e137b11adced627719308c7";
17   };
19   buildInputs = [ cogapp mock virtualenv ];
21   propagatedBuildInputs = [ nose ];
23   # the tests do not pass
24   doCheck = false;
26   meta = with lib; {
27     description = "A Python-based build/distribution/deployment scripting tool";
28     homepage    = "https://github.com/paver/paver";
29     maintainers = with maintainers; [ lovek323 ];
30     platforms   = platforms.unix;
31   };