My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pymaven-patch/default.nix

44 lines
707 B

{ lib
, fetchPypi
, buildPythonPackage
, pbr
, requests
, six
, lxml
, pytestCheckHook
, pytest-cov
, mock
}:
buildPythonPackage rec {
pname = "pymaven-patch";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "d55b29bd4aeef3510904a12885eb6856b5bd48f3e29925a123461429f9ad85c0";
};
propagatedBuildInputs = [
pbr
requests
six
lxml
];
checkInputs = [
pytestCheckHook
pytest-cov
mock
];
pythonImportsCheck = [
"pymaven"
];
meta = with lib; {
description = "Python access to maven";
homepage = "https://github.com/nexB/pymaven";
license = licenses.asl20;
maintainers = teams.determinatesystems.members;
};
}