python3Packages.jupyter-core: 5.2.0 -> 5.3.1

This commit is contained in:
Martin Weinelt
2023-09-27 15:33:41 +02:00
parent e57a600fc3
commit 5a5b19deeb
@@ -2,7 +2,6 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, fetchpatch
, hatchling
, platformdirs
, traitlets
@@ -11,7 +10,7 @@
buildPythonPackage rec {
pname = "jupyter-core";
version = "5.2.0";
version = "5.3.1";
disabled = pythonOlder "3.7";
format = "pyproject";
@@ -20,16 +19,11 @@ buildPythonPackage rec {
owner = "jupyter";
repo = "jupyter_core";
rev = "refs/tags/v${version}";
hash = "sha256-X3P3bTLhpWIa6EHdxZ/KFiQNAnhszha2cfZ8PynZPRs=";
hash = "sha256-kQ7oNEC5L19PTPaX6C2bP5FYuzlsFsS0TABsw6VvoL8=";
};
patches = [
./tests_respect_pythonpath.patch
(fetchpatch {
# add support for platformdirs>=3
url = "https://github.com/jupyter/jupyter_core/commit/ff4086cdbdac2ea79c18632e4e35acebc1f7cf57.patch";
hash = "sha256-UhHO58xZ4hH47NBhOhsfBjgsUtA+1EIHxPBvnKA5w28=";
})
];
nativeBuildInputs = [