Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 27 lines 570 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4, param 5}: 6 7buildPythonPackage rec { 8 pname = "pyviz_comms"; 9 version = "0.7.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "c1722a496b08eb20ae3f2fedcc1ebcd207567b62e6453c7198a0b8f78ae96049"; 14 }; 15 16 propagatedBuildInputs = [ param ]; 17 18 # there are not tests with the package 19 doCheck = false; 20 21 meta = with lib; { 22 description = "Launch jobs, organize the output, and dissect the results"; 23 homepage = http://pyviz.org/; 24 license = licenses.bsd3; 25 maintainers = [ maintainers.costrouc ]; 26 }; 27}