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";
version = "2.0.3";
2020-12-26 04:20:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "4b9d2363365b3455a0204bf163f09bd351d24b938c618c79d975a9510e128e95";
};
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;
};
}