depot/third_party/nixpkgs/pkgs/development/python-modules/pyrate-limiter/default.nix

37 lines
996 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "pyrate-limiter";
version = "2.10.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "vutran1710";
repo = "PyrateLimiter";
rev = "v${version}";
hash = "sha256-CPusPeyTS+QyWiMHsU0ii9ZxPuizsqv0wQy3uicrDw0=";
};
nativeBuildInputs = [ poetry-core ];
pythonImportsCheck = [ "pyrate_limiter" ];
# The only consumer of this is Lutris (via python-moddb), and it requires 2.x,
# so don't auto-update it and break Lutris every python-updates.
# FIXME: remove when python-moddb updates.
passthru.skipBulkUpdate = true;
meta = with lib; {
description = "Python Rate-Limiter using Leaky-Bucket Algorimth Family";
homepage = "https://github.com/vutran1710/PyrateLimiter";
changelog = "https://github.com/vutran1710/PyrateLimiter/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ kranzes ];
};
}