python3.pkgs.pymaven-patch: init at 0.3.0

This commit is contained in:
Cole Helbling 2021-04-19 22:00:56 -07:00
parent 4c77db5984
commit 157f3eae60
No known key found for this signature in database
GPG Key ID: B37E0F2371016A4C
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ 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;
};
}

View File

@ -6112,6 +6112,8 @@ in {
pymatgen-lammps = callPackage ../development/python-modules/pymatgen-lammps { };
pymaven-patch = callPackage ../development/python-modules/pymaven-patch { };
pymavlink = callPackage ../development/python-modules/pymavlink { };
pymazda = callPackage ../development/python-modules/pymazda { };