python311Packages.nbmake: init at 1.5.3

This commit is contained in:
Gaetan Lepage 2024-05-07 15:05:52 +02:00
parent 7be445e577
commit 11733d0047
2 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,74 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, pythonRelaxDepsHook
, setuptools
, wheel
, ipykernel
, nbclient
, nbformat
, pygments
, pytest
, pyyaml
, pytest-xdist
, pytestCheckHook
, typing-extensions
}:
buildPythonPackage rec {
pname = "nbmake";
version = "1.5.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "treebeardtech";
repo = "nbmake";
rev = "refs/tags/v${version}";
hash = "sha256-sX0YqyBchLlo0QPIpLvl11/gwoiZknG5rBDzmQKiXhs=";
};
build-system = [
poetry-core
pythonRelaxDepsHook
setuptools
wheel
];
dependencies = [
ipykernel
nbclient
nbformat
pygments
pytest
pyyaml
];
pythonRelaxDeps = [
"nbclient"
];
pythonImportsCheck = [
"nbmake"
];
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
typing-extensions
];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Pytest plugin for testing notebooks";
homepage = "https://github.com/treebeardtech/nbmake";
changelog = "https://github.com/treebeardtech/nbmake/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View File

@ -8630,6 +8630,8 @@ self: super: with self; {
nbformat = callPackage ../development/python-modules/nbformat { };
nbmake = callPackage ../development/python-modules/nbmake { };
nbmerge = callPackage ../development/python-modules/nbmerge { };
nbsmoke = callPackage ../development/python-modules/nbsmoke { };