0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python3Packages.screenlogicpy: add pytest-asyncio

This commit is contained in:
Fabian Affolter 2021-11-28 10:19:26 +01:00 committed by Jonathan Ringer
parent 6c6f8f450d
commit 15037e6e38
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytest-asyncio
, pytestCheckHook
}:
@ -20,6 +21,7 @@ buildPythonPackage rec {
};
checkInputs = [
pytest-asyncio
pytestCheckHook
];