python311Packages.nbformat: 5.10.3 -> 5.10.4

This commit is contained in:
natsukium 2024-04-07 21:39:01 +09:00
parent 3c0e7d6fc9
commit 3223d99210
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
1 changed files with 9 additions and 5 deletions

View File

@ -15,27 +15,31 @@
buildPythonPackage rec {
pname = "nbformat";
version = "5.10.3";
format = "pyproject";
version = "5.10.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-YO1ekQ73xiZLh9ZE8naxtJ4kARkw3u9UYFGI3eshFoU=";
hash = "sha256-MiFosU+Tel0RNimI7KwqSVLT2OOiy+sjGVhGMSJtWzo=";
};
nativeBuildInputs = [
build-system = [
hatchling
hatch-nodejs-version
];
propagatedBuildInputs = [
dependencies = [
fastjsonschema
jsonschema
jupyter-core
traitlets
];
pythonImportsCheck = [
"nbformat"
];
nativeCheckInputs = [
pep440
pytestCheckHook