Merge pull request #317577 from GaetanLepage/nbmake

python311Packages.nbmake: 1.5.3 -> 1.5.4
This commit is contained in:
Peder Bergebakken Sundt 2024-06-06 02:21:03 +02:00 committed by GitHub
commit 7ce8977edb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "nbmake"; pname = "nbmake";
version = "1.5.3"; version = "1.5.4";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -29,7 +29,7 @@ buildPythonPackage rec {
owner = "treebeardtech"; owner = "treebeardtech";
repo = "nbmake"; repo = "nbmake";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-sX0YqyBchLlo0QPIpLvl11/gwoiZknG5rBDzmQKiXhs="; hash = "sha256-OzjqpipFb5COhqc//Sg6OU65ShPrYe/KtxifToEXveg=";
}; };
build-system = [ build-system = [
@ -60,11 +60,11 @@ buildPythonPackage rec {
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
meta = with lib; { meta = {
description = "Pytest plugin for testing notebooks"; description = "Pytest plugin for testing notebooks";
homepage = "https://github.com/treebeardtech/nbmake"; homepage = "https://github.com/treebeardtech/nbmake";
changelog = "https://github.com/treebeardtech/nbmake/releases/tag/v${version}"; changelog = "https://github.com/treebeardtech/nbmake/releases/tag/v${version}";
license = licenses.asl20; license = lib.licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ]; maintainers = with lib.maintainers; [ GaetanLepage ];
}; };
} }