mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
702 B
Nix
35 lines
702 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ratelimit";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tomasbasham";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "04hy3hhh5xdqcsz0lx8j18zbj88kh5ik4wyi5d3a5sfy2hx70in2";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "/--cov/d" pytest.ini
|
|
'';
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [ "tests" ];
|
|
|
|
pythonImportsCheck = [ "ratelimit" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python API Rate Limit Decorator";
|
|
homepage = "https://github.com/tomasbasham/ratelimit";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|