mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
87 lines
1.9 KiB
Nix
87 lines
1.9 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, deprecated
|
|
, fetchFromGitHub
|
|
, etcd3
|
|
, hiro
|
|
, packaging
|
|
, pymemcache
|
|
, pymongo
|
|
, pytest-asyncio
|
|
, pytest-lazy-fixture
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, redis
|
|
, setuptools
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "limits";
|
|
version = "3.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alisaifee";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
# Upstream uses versioneer, which relies on git attributes substitution.
|
|
# This leads to non-reproducible archives on github. Remove the substituted
|
|
# file here, and recreate it later based on our version info.
|
|
postFetch = ''
|
|
rm "$out/limits/_version.py"
|
|
'';
|
|
hash = "sha256-zMU2MU7MFTWSig2j1PaBLPtKM5/7gNkFajKXw3A+fIQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
deprecated
|
|
packaging
|
|
setuptools
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
etcd3
|
|
hiro
|
|
pymemcache
|
|
pymongo
|
|
pytest-asyncio
|
|
pytest-lazy-fixture
|
|
pytestCheckHook
|
|
redis
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pytest.ini \
|
|
--replace "--cov=limits" "" \
|
|
--replace "-K" ""
|
|
|
|
substituteInPlace setup.py \
|
|
--replace "versioneer.get_version()" "'${version}'"
|
|
|
|
# Recreate _version.py, deleted at fetch time due to non-reproducibility.
|
|
echo 'def get_versions(): return {"version": "${version}"}' > limits/_version.py
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"limits"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
# All other tests require a running Docker instance
|
|
"tests/test_limits.py"
|
|
"tests/test_ratelimit_parser.py"
|
|
"tests/test_limit_granularities.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Rate limiting using various strategies and storage backends such as redis & memcached";
|
|
homepage = "https://github.com/alisaifee/limits";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|