Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 27 lines 573 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4, param 5}: 6 7buildPythonPackage rec { 8 pname = "pyviz_comms"; 9 version = "0.7.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "cd9649a9ea9dfcb9b34d78f9a64e1870aa8b6b94de546e2c99c6bb53d64ab5d1"; 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 = "https://pyviz.org/"; 24 license = licenses.bsd3; 25 maintainers = [ maintainers.costrouc ]; 26 }; 27}