blob: fb5a51f4cfa1e5757f0e5bc09554b4a6bb773a0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
conjure-python-client,
}:
buildPythonPackage rec {
pname = "nominal-api";
version = "0.806.0";
pyproject = true;
# nixpkgs-update: no auto update
src = fetchPypi {
inherit version;
pname = "nominal_api";
hash = "sha256-V9zncQFNBi3MtgBHmwY4SoSgI9cjQuBt90PeRHjaXsw=";
};
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;
};
}
|