ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aiorwlock / default.nix
blob9ee21f2a7c9b6269b19fc6c5f7c9bcda7950c0d7
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , pytest-asyncio
5 , pytest-cov
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "aiorwlock";
11   version = "1.3.0";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-g/Eth99LlyiguP2hdWWFqw1lKxB7q1nGCE4bGtaSq0U=";
16   };
18   checkInputs = [
19     pytestCheckHook
20     pytest-asyncio
21   ];
23   pythonImportsCheck = [ "aiorwlock" ];
25   meta = with lib; {
26     description = "Read write lock for asyncio";
27     homepage = "https://github.com/aio-libs/aiorwlock";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ billhuang ];
30   };