aiorwlock: init at 1.3.0

update aiorwlock hash

remove pytest-cov

add pythonImportsCheck
This commit is contained in:
Bill Huang 2022-10-04 15:18:31 +08:00
parent 1da984855d
commit 3b6e2eb683
No known key found for this signature in database
GPG key ID: AFBF50389B764045

View file

@ -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 ];
};
}