2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 15:30:06 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, cogapp
|
|
|
|
, mock
|
|
|
|
, virtualenv
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-11-04 10:35:08 +00:00
|
|
|
version = "1.3.4";
|
2018-10-16 15:30:06 +01:00
|
|
|
pname = "Paver";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:08 +00:00
|
|
|
sha256 = "d3e6498881485ab750efe40c5278982a9343bc627e137b11adced627719308c7";
|
2018-10-16 15:30:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cogapp mock virtualenv ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ nose ];
|
|
|
|
|
|
|
|
# the tests do not pass
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 15:30:06 +01:00
|
|
|
description = "A Python-based build/distribution/deployment scripting tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/paver/paver";
|
2018-10-16 15:30:06 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|