From 3b6e2eb68328e622dd4aea63c598adeae22b50a7 Mon Sep 17 00:00:00 2001 From: Bill Huang Date: Tue, 4 Oct 2022 15:18:31 +0800 Subject: [PATCH] aiorwlock: init at 1.3.0 update aiorwlock hash remove pytest-cov add pythonImportsCheck --- .../python-modules/aiorwlock/default.nix | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/development/python-modules/aiorwlock/default.nix diff --git a/pkgs/development/python-modules/aiorwlock/default.nix b/pkgs/development/python-modules/aiorwlock/default.nix new file mode 100644 index 000000000000..9ee21f2a7c9b --- /dev/null +++ b/pkgs/development/python-modules/aiorwlock/default.nix @@ -0,0 +1,31 @@ +{ buildPythonPackage +, fetchPypi +, lib +, pytest-asyncio +, pytest-cov +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "aiorwlock"; + version = "1.3.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "sha256-g/Eth99LlyiguP2hdWWFqw1lKxB7q1nGCE4bGtaSq0U="; + }; + + checkInputs = [ + pytestCheckHook + pytest-asyncio + ]; + + pythonImportsCheck = [ "aiorwlock" ]; + + meta = with lib; { + description = "Read write lock for asyncio"; + homepage = "https://github.com/aio-libs/aiorwlock"; + license = licenses.asl20; + maintainers = with maintainers; [ billhuang ]; + }; +}