linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyviz-comms / default.nix
blob260311a51ad6e0ce6c0a494c97d9fbaf2d20a908
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , param
5 }:
7 buildPythonPackage rec {
8   pname = "pyviz_comms";
9   version = "0.7.6";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "cd9649a9ea9dfcb9b34d78f9a64e1870aa8b6b94de546e2c99c6bb53d64ab5d1";
14   };
16   propagatedBuildInputs = [ param ];
18   # there are not tests with the package
19   doCheck = false;
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   };