python311Packages.ipynbname: 2023.2.0.0 -> 2024.1.0.0

This commit is contained in:
natsukium 2024-05-07 18:35:17 +09:00
parent f4b6ee7b3f
commit 613e20d088
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1,20 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, ipykernel
}:
buildPythonPackage rec {
pname = "ipynbname";
version = "2023.2.0.0";
format = "setuptools";
version = "2024.1.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Riu915VmJIdtxOqB+nkoRas4cOREyh9res2uo32Mnr8=";
hash = "sha256-HTxpze6Kl4FPRWpyBOnMGVtLu0ueRcvnV3lrFiST9gY=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
ipykernel
];