Files
nixpkgs/pkgs/development/python-modules/paver/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

52 lines
909 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 = "Python-based build/distribution/deployment scripting tool";
mainProgram = "paver";
homepage = "https://github.com/paver/paver";
license = licenses.bsd3;
maintainers = with maintainers; [ lovek323 ];
};
}