python3Packages.clearpasspy: init at 1.1.3 (#436365)

This commit is contained in:
Martin Weinelt
2025-08-28 22:45:08 +02:00
committed by GitHub
3 changed files with 42 additions and 1 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 ];
};
}
@@ -1018,7 +1018,8 @@
];
"cppm_tracker" =
ps: with ps; [
]; # missing inputs: clearpasspy
clearpasspy
];
"cpuspeed" =
ps: with ps; [
py-cpuinfo
+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 { };