Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
691 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}