Commit e3e76c1c authored by Doron Behar's avatar Doron Behar
Browse files
parent 374a8af4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@

buildPythonPackage rec {
  pname = "requests-ratelimiter";
  version = "0.8.0";
  version = "0.9.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "JWCook";
    repo = "requests-ratelimiter";
    tag = "v${version}";
    hash = "sha256-/fyZ+fjboAw97FPI6TgcjHRUAJbdNomvh7xJqTrTmuY=";
    hash = "sha256-jmHXD3UJwzZSLXS7NXvCM/+lOFreSqb1QIl/jvO8lWc=";
  };

  build-system = [ hatchling ];
@@ -39,7 +39,7 @@ buildPythonPackage rec {

  meta = {
    # https://github.com/JWCook/requests-ratelimiter/issues/78
    broken = lib.versionAtLeast pyrate-limiter.version "3";
    broken = lib.versionOlder pyrate-limiter.version "4";
    description = "Module for rate-limiting for requests";
    homepage = "https://github.com/JWCook/requests-ratelimiter";
    changelog = "https://github.com/JWCook/requests-ratelimiter/blob/${src.tag}/HISTORY.md";