Merge pull request #204610 from fabaff/slowapi-bump

python310Packages.slowapi: 0.1.6 -> 0.1.7
This commit is contained in:
Fabian Affolter 2022-12-05 15:37:25 +01:00 committed by GitHub
commit 3d415bb6d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,16 +15,16 @@
buildPythonPackage rec {
pname = "slowapi";
version = "0.1.6";
version = "0.1.7";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "laurentS";
repo = pname;
rev = "v${version}";
sha256 = "sha256-3ZkQnroHMCHuTPH/cvi/iWndvdyQ/ZJQ2Qtu1CZyeGg=";
rev = "refs/tags/v${version}";
hash = "sha256-IAB7JW8iVb5M610GVK0POXlSiya22KzNgr26BNvPC4Q=";
};
nativeBuildInputs = [
@ -65,6 +65,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for API rate limiting";
homepage = "https://github.com/laurentS/slowapi";
changelog = "https://github.com/laurentS/slowapi/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};