nixpkgs/pkgs/development/python-modules/thespian/default.nix
2018-08-10 12:28:49 +02:00

26 lines
732 B
Nix

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