Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / thespian / default.nix
blob564e7d73e61912a51b37fc9bb361f7043a768635
1 { fetchPypi, buildPythonPackage, lib }:
3 buildPythonPackage rec {
4   version = "3.10.7";
5   format = "setuptools";
6   pname = "thespian";
8   src = fetchPypi {
9     inherit pname version;
10     extension = "zip";
11     hash = "sha256-HcHvZtMpBtNXq9Yp2ayeHTuIf7gpBUb6xZqjaECbfgo=";
12   };
14   # Do not run the test suite: it takes a long time and uses
15   # significant system resources, including requiring localhost
16   # network operations.  Thespian tests are performed via its Travis
17   # CI configuration and do not need to be duplicated here.
18   doCheck = false;
20   meta = with lib; {
21     description = "Python Actor concurrency library";
22     homepage = "http://thespianpy.com/";
23     license = licenses.mit;
24     maintainers = [ maintainers.kquick ];
25   };