2018-07-21 02:44:44 +02:00
|
|
|
{ fetchPypi, buildPythonPackage, lib }:
|
2017-11-22 01:48:30 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-08-31 08:28:26 +02:00
|
|
|
version = "3.9.10";
|
2017-11-22 01:48:30 +01:00
|
|
|
pname = "thespian";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-08-31 08:28:26 +02:00
|
|
|
sha256 = "bffb04b93afcbab0268332445f02757c326f95056eb7e1e2f0515c1dfb92ac7d";
|
2017-11-22 01:48:30 +01:00
|
|
|
};
|
|
|
|
|
2018-01-09 20:04:46 +01:00
|
|
|
# Do not run the test suite: it takes a long time and uses
|
2017-11-23 06:23:43 +01:00
|
|
|
# significant system resources, including requiring localhost
|
2018-01-09 20:04:46 +01:00
|
|
|
# network operations. Thespian tests are performed via its Travis
|
2017-11-23 06:23:43 +01:00
|
|
|
# CI configuration and do not need to be duplicated here.
|
2017-11-22 01:48:30 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python Actor concurrency library";
|
|
|
|
homepage = http://thespianpy.com/;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.kquick ];
|
|
|
|
};
|
|
|
|
}
|