mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
49 lines
937 B
Nix
49 lines
937 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyjwt
|
|
, ratelimit
|
|
, requests
|
|
, requests-mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyflume";
|
|
version = "0.8.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ChrisMandich";
|
|
repo = "PyFlume";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RtzbAXjMtvKc8vnZIxIJnc6CS+BrYcQgdy5bVaJumg0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyjwt
|
|
ratelimit
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
requests-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pyflume"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to work with Flume sensors";
|
|
homepage = "https://github.com/ChrisMandich/PyFlume";
|
|
changelog = "https://github.com/ChrisMandich/PyFlume/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|