nixpkgs/pkgs/development/python-modules/thespian/default.nix

26 lines
735 B
Nix
Raw Normal View History

{ fetchPypi, buildPythonPackage, lib }:
2017-11-22 00:48:30 +00:00
buildPythonPackage rec {
version = "3.10.3";
2017-11-22 00:48:30 +00:00
pname = "thespian";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "d9152089f239c80339eb0431b9561966a841fb3ab0d043b36fa47934fc7956f2";
2017-11-22 00:48:30 +00:00
};
2018-01-09 19:04:46 +00:00
# Do not run the test suite: it takes a long time and uses
# significant system resources, including requiring localhost
2018-01-09 19:04:46 +00:00
# network operations. Thespian tests are performed via its Travis
# CI configuration and do not need to be duplicated here.
2017-11-22 00:48:30 +00:00
doCheck = false;
meta = with lib; {
description = "Python Actor concurrency library";
homepage = "http://thespianpy.com/";
2017-11-22 00:48:30 +00:00
license = licenses.mit;
maintainers = [ maintainers.kquick ];
};
}