blob: bc097cec7aec3c1248f1346478db21e7ce7c8da6 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "thespian";
version = "4.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-92krWgkXCmH7Qa0Q+0cY2KKwKjDeJYLA8I0DtSmoRog=";
};
build-system = [
setuptools
];
# Do not run the test suite: it takes a long time and uses
# significant system resources, including requiring localhost
# network operations. Thespian tests are performed via its Travis
# CI configuration and do not need to be duplicated here.
doCheck = false;
pythonImportsCheck = [
"thespian"
"thespian.actors"
];
meta = {
description = "Python Actor concurrency library";
homepage = "http://thespianpy.com/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.kquick ];
};
}
|