mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
43 lines
800 B
Nix
43 lines
800 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, aiohttp
|
|
, codecov
|
|
, flake8
|
|
, pytest
|
|
, pytest-asyncio
|
|
, pytest-cov
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "throttler";
|
|
version = "1.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uburuntu";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-fE35zPjBUn4e1VRkkIUMtYJ/+LbnUxnxyfnU+UEPwr4=";
|
|
};
|
|
|
|
checkInputs = [
|
|
aiohttp
|
|
codecov
|
|
flake8
|
|
pytest
|
|
pytest-asyncio
|
|
pytest-cov
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [ "tests/" ];
|
|
|
|
meta = with lib; {
|
|
description = "Zero-dependency Python package for easy throttling with asyncio support.";
|
|
homepage = "https://github.com/uburuntu/throttler";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ renatoGarcia ];
|
|
};
|
|
}
|