python3Packages.jupyter-packaging: 0.12.2 -> 0.12.3

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:10 +02:00
parent 8495fb43ef
commit f0424a78f7

View File

@ -7,26 +7,32 @@
, packaging
, pytestCheckHook
, pytest-timeout
, setuptools
, tomlkit
}:
buildPythonPackage rec {
pname = "jupyter-packaging";
version = "0.12.2";
version = "0.12.3";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
pname = "jupyter_packaging";
inherit version;
sha256 = "sha256-C5nq7PVrnR2Z57y2Yy2RSo6laY2kCyOLqJIno0FX3jI=";
sha256 = "sha256-nZsrY7l//WeovFORwypCG8QVsmSjLJnk2NjdMdqunPQ=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [ deprecation packaging tomlkit ];
propagatedBuildInputs = [
deprecation
packaging
setuptools
tomlkit
];
checkInputs = [
pytestCheckHook