about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-05-07 12:02:46 +0200
committerGitHub <noreply@github.com>2022-05-07 12:02:46 +0200
commit9c74e27e4ed6a21506403bbb7c413467b564e5a0 (patch)
tree7ba3f81c72dda5199956a47f2bff1210fc5a8561 /pkgs
parent413336e57899af5972261a5b0eb193197a5a7125 (diff)
parent98912aaadfbe51243925beb53597df2459becae6 (diff)
Merge pull request #171913 from dotlambda/async-lru-1.0.3
python3Packages.async-lru: unstable-2022-02-03 -> 1.0.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/async-lru/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/async-lru/default.nix b/pkgs/development/python-modules/async-lru/default.nix
index 69e6519b32c3d..b656b19478575 100644
--- a/pkgs/development/python-modules/async-lru/default.nix
+++ b/pkgs/development/python-modules/async-lru/default.nix
@@ -8,15 +8,15 @@
 
 buildPythonPackage rec {
   pname = "async-lru";
-  version = "unstable-2022-02-03";
+  version = "1.0.3";
 
   disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "aio-libs";
     repo = "async-lru";
-    rev = "3574af7691371015c47faf77e0abf8c7b06a3cdc";
-    hash = "sha256-EsadpQlRNnebp0UUybzQwzyK4zwFlortutv3VTUsprU=";
+    rev = "v${version}";
+    hash = "sha256-98ZPFSOFRnymTCfCG9OuajfxXAWyCrByyJEHhpPVPbM=";
   };
 
   postPatch = ''
@@ -32,13 +32,6 @@ buildPythonPackage rec {
     "--asyncio-mode=strict"
   ];
 
-  disabledTests = [
-    # https://github.com/aio-libs/async-lru/issues/341
-    "test_alru_cache_deco"
-    "test_alru_cache_fn_called"
-    "test_close"
-  ];
-
   pythonImportsCheck = [ "async_lru" ];
 
   meta = with lib; {