Merge pull request #114755 from fabaff/chirpstack-api
python3Packages.chirpstack-api: init at 3.9.4
This commit is contained in:
commit
81e6cf3d1c
32
pkgs/development/python-modules/chirpstack-api/default.nix
Normal file
32
pkgs/development/python-modules/chirpstack-api/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, google-api-core
|
||||||
|
, grpcio
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "chirpstack-api";
|
||||||
|
version = "3.9.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "08djidy3fyhghyzvndcjas3hb1s9d7719gvmgbl8bzxjm4h2c433";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
google-api-core
|
||||||
|
grpcio
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "chirpstack_api" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "ChirpStack gRPC API message and service wrappers for Python";
|
||||||
|
homepage = "https://github.com/brocaar/chirpstack-api";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -1283,6 +1283,8 @@ in {
|
|||||||
|
|
||||||
chevron = callPackage ../development/python-modules/chevron { };
|
chevron = callPackage ../development/python-modules/chevron { };
|
||||||
|
|
||||||
|
chirpstack-api = callPackage ../development/python-modules/chirpstack-api { };
|
||||||
|
|
||||||
ci-info = callPackage ../development/python-modules/ci-info { };
|
ci-info = callPackage ../development/python-modules/ci-info { };
|
||||||
|
|
||||||
ci-py = callPackage ../development/python-modules/ci-py { };
|
ci-py = callPackage ../development/python-modules/ci-py { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user