f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
44 lines
700 B
Nix
44 lines
700 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
pbr,
|
|
requests,
|
|
six,
|
|
lxml,
|
|
pytestCheckHook,
|
|
pytest-cov,
|
|
mock,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pymaven-patch";
|
|
version = "0.3.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DPfJPonwHwQI62Vu7FjLSiKMleA7PUfLc9MfiZBVzVA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pbr
|
|
requests
|
|
six
|
|
lxml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov
|
|
mock
|
|
];
|
|
|
|
pythonImportsCheck = [ "pymaven" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python access to maven";
|
|
homepage = "https://github.com/nexB/pymaven";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|