blob: 3d74dbf3f918ba845bb2ef8897d7e0a632fe10cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
hatchling,
pydantic,
pytestCheckHook,
pytest-mock,
}:
buildPythonPackage rec {
pname = "pykka";
version = "4.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jodal";
repo = "pykka";
tag = "v${version}";
hash = "sha256-61Dr8V2LILGNveVi6eD0OODXF/a8m8I5/H9MfyIr9Dg=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pydantic
pytestCheckHook
pytest-mock
];
pythonImportsCheck = [ "pykka" ];
meta = {
homepage = "https://www.pykka.org/";
description = "Python implementation of the actor model";
changelog = "https://github.com/jodal/pykka/releases/tag/${src.tag}";
maintainers = [ ];
license = lib.licenses.asl20;
};
}
|