Skip to content

Commit 3d2e610

Browse files
committed
python3.pkgs.async-cache: init at 1.1.1
1 parent 16f1a1b commit 3d2e610

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildPythonPackage rec {
8+
pname = "async-cache";
9+
version = "1.1.1";
10+
11+
src = fetchFromGitHub {
12+
owner = "iamsinghrajat";
13+
repo = "async-cache";
14+
rev = "9925f07920e6b585dc6345f49b7f477b3e1b8c2c"; # doesn't tag releases :(
15+
hash = "sha256-AVSdtWPs1c8AE5PNOq+BdXzBXkI0aeFVzxxPl/ATyU0=";
16+
};
17+
18+
meta = with lib; {
19+
description = "Caching solution for asyncio";
20+
homepage = "https://github.com/iamsinghrajat/async-cache";
21+
license = licenses.mit;
22+
maintainers = [ maintainers.lukegb ];
23+
};
24+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -902,6 +902,8 @@ self: super: with self; {
902902

903903
asyncarve = callPackage ../development/python-modules/asyncarve { };
904904

905+
async-cache = callPackage ../development/python-modules/async-cache { };
906+
905907
async-dns = callPackage ../development/python-modules/async-dns { };
906908

907909
async-generator = callPackage ../development/python-modules/async-generator { };

0 commit comments

Comments
 (0)