File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
development/python-modules/async-cache Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments