aiorwlock: init at 1.3.0
update aiorwlock hash remove pytest-cov add pythonImportsCheck
This commit is contained in:
parent
1da984855d
commit
3b6e2eb683
1 changed files with 31 additions and 0 deletions
31
pkgs/development/python-modules/aiorwlock/default.nix
Normal file
31
pkgs/development/python-modules/aiorwlock/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue