Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 21 lines 610 B view raw
1{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-mock }: 2 3buildPythonPackage rec { 4 pname = "Pykka"; 5 version = "2.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "4b9d2363365b3455a0204bf163f09bd351d24b938c618c79d975a9510e128e95"; 10 }; 11 12 checkInputs = [ pytestCheckHook pytest-mock ]; 13 14 meta = with lib; { 15 homepage = "https://www.pykka.org/"; 16 description = "A Python implementation of the actor model"; 17 changelog = "https://github.com/jodal/pykka/blob/v${version}/docs/changes.rst"; 18 maintainers = [ maintainers.marsam ]; 19 license = licenses.asl20; 20 }; 21}