2018-10-16 16:30:06 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, cogapp
|
|
|
|
, mock
|
|
|
|
, virtualenv
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-11-04 11:35:08 +01:00
|
|
|
version = "1.3.4";
|
2018-10-16 16:30:06 +02:00
|
|
|
pname = "Paver";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 11:35:08 +01:00
|
|
|
sha256 = "d3e6498881485ab750efe40c5278982a9343bc627e137b11adced627719308c7";
|
2018-10-16 16:30:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/paver/paver";
|
2018-10-16 16:30:06 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|