12 buildPythonPackage rec {
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-2baFwZPNuVU39Kt5B8QvGKu7jMbg+GZ3ROoTxzPOXac=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ typing-extensions ];
35 pythonImportsCheck = [ "pykka" ];
38 homepage = "https://www.pykka.org/";
39 description = "Python implementation of the actor model";
40 changelog = "https://github.com/jodal/pykka/releases/tag/v${version}";
42 license = licenses.asl20;