about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/thespian/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/thespian/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/thespian/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/thespian/default.nix b/nixpkgs/pkgs/development/python-modules/thespian/default.nix
new file mode 100644
index 000000000000..af3d24899c77
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/thespian/default.nix
@@ -0,0 +1,25 @@
+{ fetchPypi, buildPythonPackage, lib }:
+
+buildPythonPackage rec {
+  version = "3.9.7";
+  pname = "thespian";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "fc968325894f812098f4fde4341c1734050bb1b742d8decf62ae9704c761f577";
+  };
+
+  # 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;
+
+  meta = with lib; {
+    description = "Python Actor concurrency library";
+    homepage = http://thespianpy.com/;
+    license = licenses.mit;
+    maintainers = [ maintainers.kquick ];
+  };
+}