mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
26 lines
735 B
Nix
26 lines
735 B
Nix
{ fetchPypi, buildPythonPackage, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.10.1";
|
|
pname = "thespian";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "e00bba5b0b91f9d7ec3df0ac671136df7a7be0a14dfea38ca3850488bca73d8c";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|