summary refs log tree commit diff
path: root/pkgs/development/python-modules/paver/default.nix
blob: ec4a40fec1b4e3c8708bdf06d82f125e66a40197 (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
29
30
31
32
33
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, cogapp
, mock
, virtualenv
}:

buildPythonPackage rec {
  version = "1.3.4";
  pname   = "Paver";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d3e6498881485ab750efe40c5278982a9343bc627e137b11adced627719308c7";
  };

  buildInputs = [ cogapp mock virtualenv ];

  propagatedBuildInputs = [ nose ];

  # the tests do not pass
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A Python-based build/distribution/deployment scripting tool";
    homepage    = "https://github.com/paver/paver";
    maintainers = with maintainers; [ lovek323 ];
    platforms   = platforms.unix;
  };

}