python3Packages.pyombi: init at 0.1.10

This commit is contained in:
Fabian Affolter 2021-09-25 15:30:19 +02:00
parent f725095581
commit eccef8929c
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "pyombi";
version = "0.1.10";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1ykbmdc2v05ly9q358j7g73ma9fsqdlclc8i0k1yd0bn7219icpx";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyombi" ];
meta = with lib; {
description = "Python module to retrieve information from Ombi";
homepage = "https://github.com/larssont/pyombi";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6558,6 +6558,8 @@ in {
pyogg = callPackage ../development/python-modules/pyogg { };
pyombi = callPackage ../development/python-modules/pyombi { };
pyomo = callPackage ../development/python-modules/pyomo { };
pyp = callPackage ../development/python-modules/pyp {