blob: 0c39ac7fd383ec05d377130e337210da7422b4b1 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
protobuf,
}:
buildPythonPackage rec {
pname = "nominal-api-protos";
version = "0.806.0";
pyproject = true;
# nixpkgs-update: no auto update
src = fetchPypi {
inherit version;
pname = "nominal_api_protos";
hash = "sha256-wbMGgW3YYX+MVc525rH6pOk72H7NlmiyEJiFtz+Osoo=";
};
build-system = [ setuptools ];
dependencies = [ protobuf ];
pythonImportsCheck = [ "nominal_api_protos" ];
meta = {
description = "Generated protobuf client for the Nominal API";
homepage = "https://pypi.org/project/nominal-api-protos/";
maintainers = with lib.maintainers; [ alkasm ];
license = lib.licenses.unfree;
};
}
|