mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 21:24:03 +00:00
![adisbladis](/assets/img/avatar_default.png)
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
27 lines
745 B
Nix
27 lines
745 B
Nix
{ fetchPypi, buildPythonPackage, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.10.7";
|
|
format = "setuptools";
|
|
pname = "thespian";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
hash = "sha256-HcHvZtMpBtNXq9Yp2ayeHTuIf7gpBUb6xZqjaECbfgo=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|