depot/third_party/nixpkgs/pkgs/development/python-modules/thespian/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

25 lines
735 B
Nix

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