diff options
Diffstat (limited to 'pkgs/development/python-modules/pykka/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pykka/default.nix | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/pykka/default.nix b/pkgs/development/python-modules/pykka/default.nix index c9e19c4c1661..1768d0489151 100644 --- a/pkgs/development/python-modules/pykka/default.nix +++ b/pkgs/development/python-modules/pykka/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, poetry-core -, pytestCheckHook -, pytest-mock -, typing-extensions +{ + lib, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + poetry-core, + pytestCheckHook, + pytest-mock, + typing-extensions, }: buildPythonPackage rec { @@ -22,28 +23,22 @@ buildPythonPackage rec { hash = "sha256-2baFwZPNuVU39Kt5B8QvGKu7jMbg+GZ3ROoTxzPOXac="; }; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; - propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ - typing-extensions - ]; + propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ typing-extensions ]; nativeCheckInputs = [ pytestCheckHook pytest-mock ]; - pythonImportsCheck = [ - "pykka" - ]; + pythonImportsCheck = [ "pykka" ]; meta = with lib; { homepage = "https://www.pykka.org/"; - description = "A Python implementation of the actor model"; + description = "Python implementation of the actor model"; changelog = "https://github.com/jodal/pykka/releases/tag/v${version}"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.asl20; }; } |