python3Packages.jupyter_core: 4.11.2 -> 5.1.1

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:21 +01:00
parent 9f307e8e7c
commit 1f460fadad

View File

@ -3,13 +3,14 @@
, pythonOlder
, fetchFromGitHub
, hatchling
, platformdirs
, traitlets
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jupyter_core";
version = "4.11.2";
version = "5.1.1";
disabled = pythonOlder "3.7";
format = "pyproject";
@ -17,8 +18,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "jupyter";
repo = "jupyter_core";
rev = version;
hash = "sha256-lDhwvhsOxLHBC6CQjCW/rmtHSuMRPC2yaurBd5K3FLc=";
rev = "refs/tags/v${version}";
hash = "sha256-54zbo+RXgT9AJabmJYHCznyoinTQqrTORzlM48WpnQQ=";
};
patches = [
@ -30,6 +31,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
platformdirs
traitlets
];