Files
nixpkgs/pkgs/development/python-modules/nbsmoke/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

49 lines
839 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytest,
jupyter-client,
ipykernel,
holoviews,
nbformat,
nbconvert,
pyflakes,
requests,
beautifulsoup4,
}:
buildPythonPackage rec {
pname = "nbsmoke";
version = "0.6.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "8b55333e2face27bc7ff80c266c468ca5633947cb0697727348020dd445b0874";
};
propagatedBuildInputs = [
pytest
holoviews
jupyter-client
ipykernel
nbformat
nbconvert
pyflakes
requests
beautifulsoup4
];
# tests not included with pypi release
doCheck = false;
pythonImportsCheck = [ "nbsmoke" ];
meta = {
description = "Basic notebook checks and linting";
homepage = "https://github.com/pyviz/nbsmoke";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}