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