python311Packages.pykka: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2023-09-22 08:45:23 +02:00 committed by GitHub
parent 15c5a5b632
commit 86e3a7960d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
, poetry-core
, pytestCheckHook
, pytest-mock
, typing-extensions
}:
buildPythonPackage rec {
@ -25,11 +26,19 @@ buildPythonPackage rec {
poetry-core
];
propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
];
pythonImportsCheck = [
"pykka"
];
meta = with lib; {
homepage = "https://www.pykka.org/";
description = "A Python implementation of the actor model";