1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, cogapp
6, mock
7, virtualenv
8}:
9
10buildPythonPackage rec {
11 version = "1.3.4";
12 pname = "Paver";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "d3e6498881485ab750efe40c5278982a9343bc627e137b11adced627719308c7";
17 };
18
19 buildInputs = [ cogapp mock virtualenv ];
20
21 propagatedBuildInputs = [ nose ];
22
23 # the tests do not pass
24 doCheck = false;
25
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 };
32
33}