nixpkgs/pkgs/development/python-modules/thespian/default.nix
2019-08-31 13:59:54 +02:00

25 lines
733 B
Nix

{ fetchPypi, buildPythonPackage, lib }:
buildPythonPackage rec {
version = "3.9.10";
pname = "thespian";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "bffb04b93afcbab0268332445f02757c326f95056eb7e1e2f0515c1dfb92ac7d";
};
# 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 ];
};
}