nixpkgs/pkgs/development/python-modules/pyviz-comms/default.nix

28 lines
573 B
Nix
Raw Normal View History

{ buildPythonPackage
, fetchPypi
, lib
, param
}:
buildPythonPackage rec {
pname = "pyviz_comms";
2019-04-16 17:15:40 +00:00
version = "0.7.2";
src = fetchPypi {
inherit pname version;
2019-04-16 17:15:40 +00:00
sha256 = "c1722a496b08eb20ae3f2fedcc1ebcd207567b62e6453c7198a0b8f78ae96049";
};
propagatedBuildInputs = [ param ];
# there are not tests with the package
doCheck = false;
meta = with lib; {
description = "Launch jobs, organize the output, and dissect the results";
homepage = "https://pyviz.org/";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}