python312Packages.nominal-api: init at 0.708.0

This commit is contained in:
Alexander Reynolds
2025-06-06 15:09:00 -04:00
parent 4ad7d58513
commit d6f9c4d2ed
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
conjure-python-client,
}:
buildPythonPackage rec {
pname = "nominal-api";
version = "0.708.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "nominal_api";
hash = "sha256-gaMQ4bLhdBkDTUoHP5Cb0vS5emNcYga5eTvV2TEWQiU=";
};
build-system = [ setuptools ];
dependencies = [
requests
conjure-python-client
];
pythonImportsCheck = [ "nominal_api" ];
meta = {
description = "Generated conjure client for the Nominal API";
homepage = "https://pypi.org/project/nominal-api/";
maintainers = with lib.maintainers; [ alkasm ];
license = lib.licenses.unfree;
};
}
+2
View File
@@ -10183,6 +10183,8 @@ self: super: with self; {
nomadnet = callPackage ../development/python-modules/nomadnet { };
nominal-api = callPackage ../development/python-modules/nominal-api { };
nonbloat-db = callPackage ../development/python-modules/nonbloat-db { };
noneprompt = callPackage ../development/python-modules/noneprompt { };