Merge pull request #31923 from kquick/thespian

thespian: Python library init at 3.8.3
This commit is contained in:
Frederik Rietdijk 2017-11-24 07:49:56 +01:00 committed by GitHub
commit 59d294dd7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchPypi, buildPythonPackage, lib }:
buildPythonPackage rec {
version = "3.8.3";
pname = "thespian";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0vvwsh3waxd5ldrayr86kdcshv07bp361fl7p16g9i044vklwly4";
};
# Do not run the test suite: it takes a long type and uses
# significant system resources, including requiring localhost
# network operations. Thespian tests are performed via it's Travis
# CI configuration and do not need to be duplicated here.
doCheck = false;
meta = with lib; {
description = "Python Actor concurrency library";
homepage = http://thespianpy.com/;
license = licenses.mit;
maintainers = [ maintainers.kquick ];
};
}

View file

@ -18143,6 +18143,8 @@ in {
cudnnSupport = false;
};
thespian = callPackage ../development/python-modules/thespian { };
tidylib = buildPythonPackage rec {
version = "0.2.4";
name = "pytidylib-${version}";