nixpkgs/pkgs/development/python-modules/pyflume/default.nix
2023-08-21 18:00:46 +00:00

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 ];
};
}