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

27 lines
772 B
Nix
Raw Normal View History

2017-11-22 00:48:30 +00:00
{ stdenv, fetchPypi, buildPythonPackage, lib }:
buildPythonPackage rec {
2018-02-03 09:54:54 +00:00
version = "3.9.2";
2017-11-22 00:48:30 +00:00
pname = "thespian";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
2018-02-03 09:54:54 +00:00
sha256 = "aec9793fecf45bb91fe919dc61b5c48a4aadfb9f94b06cd92883df7952eacf95";
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/;
license = licenses.mit;
maintainers = [ maintainers.kquick ];
};
}