python3Packages.clearpasspy: init at 1.1.3

This commit is contained in:
Jamie Magee
2025-08-28 13:29:31 -07:00
parent b8e538eabf
commit dc5be8dcdb
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "clearpasspy";
version = "1.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-HAi9z7DT5g0Pkr+rASUK18/tEsorWXScCODE95Q+ZZ0=";
};
build-system = [
setuptools
];
pythonRelaxDeps = [ "requests" ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "clearpasspy" ];
meta = {
description = "ClearPass API Python Library";
homepage = "https://github.com/zemerick1/clearpasspy";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -2594,6 +2594,8 @@ self: super: with self; {
cleanvision = callPackage ../development/python-modules/cleanvision { };
clearpasspy = callPackage ../development/python-modules/clearpasspy { };
cleo = callPackage ../development/python-modules/cleo { };
clevercsv = callPackage ../development/python-modules/clevercsv { };