about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-11-24 07:49:56 +0100
committerGitHub <noreply@github.com>2017-11-24 07:49:56 +0100
commit59d294dd7db9adab4bc72bbfc9c523dda71615f5 (patch)
tree1af939119be823e01478306c193e8785938ae9d9 /pkgs/development
parent193c4c5701604016b565bdb0eba87489586ffe9d (diff)
parent2233ae6a9977f01095ad6944ecc1e0b6319842c4 (diff)
Merge pull request #31923 from kquick/thespian
thespian: Python library init at 3.8.3
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/thespian/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/thespian/default.nix b/pkgs/development/python-modules/thespian/default.nix
new file mode 100644
index 0000000000000..7a6ff3cc53d1f
--- /dev/null
+++ b/pkgs/development/python-modules/thespian/default.nix
@@ -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 ];
+  };
+}