1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage 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}