nixpkgs/pkgs/development/python-modules/paver/default.nix
2023-01-21 17:10:01 +01:00

54 lines
884 B
Nix

{ lib
, buildPythonPackage
, cogapp
, fetchPypi
, mock
, nose
, pytestCheckHook
, pythonOlder
, six
, virtualenv
}:
buildPythonPackage rec {
pname = "paver";
version = "1.3.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Paver";
inherit version;
hash = "sha256-0+ZJiIFIWrdQ7+QMUniYKpNDvGJ+E3sRrc7WJ3GTCMc=";
};
propagatedBuildInputs = [
six
];
checkInputs = [
cogapp
mock
nose
pytestCheckHook
virtualenv
];
pythonImportsCheck = [
"paver"
];
disabledTestPaths = [
# Test depends on distutils
"paver/tests/test_setuputils.py"
];
meta = with lib; {
description = "A Python-based build/distribution/deployment scripting tool";
homepage = "https://github.com/paver/paver";
license = licenses.bsd3;
maintainers = with maintainers; [ lovek323 ];
};
}