nixpkgs/pkgs/development/python-modules/nbsmoke/default.nix

46 lines
789 B
Nix
Raw Normal View History

2019-02-24 15:24:17 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, jupyter_client
, ipykernel
, holoviews
2019-02-24 15:24:17 +00:00
, nbformat
, nbconvert
, pyflakes
, requests
, beautifulsoup4
}:
buildPythonPackage rec {
pname = "nbsmoke";
2019-12-19 19:31:16 +00:00
version = "0.3.0";
2019-02-24 15:24:17 +00:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:16 +00:00
sha256 = "070e999db3902a0c62a94d76de8fb98da21eaee22d9e90eb42f1636c87e1b805";
2019-02-24 15:24:17 +00:00
};
propagatedBuildInputs = [
pytest
holoviews
2019-02-24 15:24:17 +00:00
jupyter_client
ipykernel
nbformat
nbconvert
pyflakes
requests
beautifulsoup4
];
# tests not included with pypi release
doCheck = false;
meta = with lib; {
description = "Basic notebook checks and linting";
homepage = "https://github.com/pyviz/nbsmoke";
2019-02-24 15:24:17 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}