python3Packages.jupyter-packaging: 0.12.0 -> 0.12.2

This commit is contained in:
Martin Weinelt 2022-07-16 12:59:15 +02:00
parent 861fd706ff
commit f5ad1e2f57

View File

@ -2,26 +2,36 @@
, buildPythonPackage
, fetchPypi
, deprecation
, hatchling
, pythonOlder
, packaging
, pytestCheckHook
, pytest-timeout
, tomlkit
}:
buildPythonPackage rec {
pname = "jupyter-packaging";
version = "0.12.0";
version = "0.12.2";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
pname = "jupyter_packaging";
inherit version;
sha256 = "sha256-snRV1grck6e6ouC484a+gbkyu048ARYEbfntIwzT+qw=";
sha256 = "sha256-C5nq7PVrnR2Z57y2Yy2RSo6laY2kCyOLqJIno0FX3jI=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [ deprecation packaging tomlkit ];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
pytest-timeout
];
preCheck = ''
export HOME=$(mktemp -d)