1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 requests,
7 conjure-python-client,
8}:
9
10buildPythonPackage rec {
11 pname = "nominal-api";
12 version = "0.806.0";
13 pyproject = true;
14
15 # nixpkgs-update: no auto update
16 src = fetchPypi {
17 inherit version;
18 pname = "nominal_api";
19 hash = "sha256-V9zncQFNBi3MtgBHmwY4SoSgI9cjQuBt90PeRHjaXsw=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [
25 requests
26 conjure-python-client
27 ];
28
29 pythonImportsCheck = [ "nominal_api" ];
30
31 meta = {
32 description = "Generated conjure client for the Nominal API";
33 homepage = "https://pypi.org/project/nominal-api/";
34 maintainers = with lib.maintainers; [ alkasm ];
35 license = lib.licenses.unfree;
36 };
37}