My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/chirpstack-api/default.nix

43 lines
838 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, google-api-core
, grpcio
, pythonOlder
}:
buildPythonPackage rec {
pname = "chirpstack-api";
version = "3.12.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "brocaar";
repo = pname;
rev = "v${version}";
hash = "sha256-69encHMk0eXE2Av87ysKvxoiXog5o68qCUlOx/lgHFU=";
};
sourceRoot = "source/python/src";
propagatedBuildInputs = [
google-api-core
grpcio
];
# Module 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 ];
};
}