Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 25 lines 732 B view raw
1{ fetchPypi, buildPythonPackage, lib }: 2 3buildPythonPackage rec { 4 version = "3.9.7"; 5 pname = "thespian"; 6 7 src = fetchPypi { 8 inherit pname version; 9 extension = "zip"; 10 sha256 = "fc968325894f812098f4fde4341c1734050bb1b742d8decf62ae9704c761f577"; 11 }; 12 13 # Do not run the test suite: it takes a long time and uses 14 # significant system resources, including requiring localhost 15 # network operations. Thespian tests are performed via its Travis 16 # CI configuration and do not need to be duplicated here. 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Python Actor concurrency library"; 21 homepage = http://thespianpy.com/; 22 license = licenses.mit; 23 maintainers = [ maintainers.kquick ]; 24 }; 25}