62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyjwt
|
|
, ratelimit
|
|
, pytz
|
|
, requests
|
|
, requests-mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyflume";
|
|
version = "0.7.0";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ChrisMandich";
|
|
repo = "PyFlume";
|
|
rev = "v${version}";
|
|
sha256 = "129sz33a270v120bzl9l98nmvdzn7ns4cf9w2v18lmzlldbyz2vn";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace setup.py --replace 'pyjwt==2.0.1' 'pyjwt>=2.0.1'
|
|
substituteInPlace setup.py --replace 'ratelimit==2.2.1' 'ratelimit>=2.2.1'
|
|
substituteInPlace setup.py --replace 'pytz==2019.2' 'pytz>=2019.2'
|
|
substituteInPlace setup.py --replace 'requests==2.24.0' 'requests>=2.24.0'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pyjwt
|
|
ratelimit
|
|
pytz
|
|
requests
|
|
];
|
|
|
|
checkInputs = [
|
|
requests-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
# https://github.com/ChrisMandich/PyFlume/issues/18
|
|
substituteInPlace setup.py \
|
|
--replace "pyjwt==2.0.1" "pyjwt>=2.0.1" \
|
|
--replace "ratelimit==2.2.1" "ratelimit>=2.2.1" \
|
|
--replace "pytz==2019.2" "pytz>=2019.2" \
|
|
--replace "requests==2.24.0" "requests>=2.24.0"
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pyflume" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to work with Flume sensors";
|
|
homepage = "https://github.com/ChrisMandich/PyFlume";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|