nixpkgs/pkgs/development/python-modules/pykka/default.nix

22 lines
610 B
Nix
Raw Normal View History

2020-12-26 04:20:00 +00:00
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-mock }:
buildPythonPackage rec {
2020-12-26 04:20:00 +00:00
pname = "Pykka";
2021-08-26 19:38:09 +00:00
version = "3.0.1";
2020-12-26 04:20:00 +00:00
src = fetchPypi {
inherit pname version;
2021-08-26 19:38:09 +00:00
sha256 = "da59f77bc6a70e01996259da806d09b0dbc00dabe874ca9558fd5eb1698709c9";
};
2020-12-26 04:20:00 +00:00
checkInputs = [ pytestCheckHook pytest-mock ];
2020-12-26 04:20:00 +00:00
meta = with lib; {
homepage = "https://www.pykka.org/";
description = "A Python implementation of the actor model";
2020-12-26 04:20:00 +00:00
changelog = "https://github.com/jodal/pykka/blob/v${version}/docs/changes.rst";
maintainers = [ maintainers.marsam ];
license = licenses.asl20;
};
}