python3.pkgs.jupyter-packaging: fix tests with setuptools 67.5.0+ (#246919)
This commit is contained in:
parent
7ad1b2d4e1
commit
30df053e77
1 changed files with 9 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchpatch
|
||||
, deprecation
|
||||
, hatchling
|
||||
, pythonOlder
|
||||
|
@ -23,6 +24,14 @@ buildPythonPackage rec {
|
|||
hash = "sha256-nZsrY7l//WeovFORwypCG8QVsmSjLJnk2NjdMdqunPQ=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "setuptools-68-test-compatibility.patch";
|
||||
url = "https://github.com/jupyter/jupyter-packaging/commit/e963fb27aa3b58cd70c5ca61ebe68c222d803b7e.patch";
|
||||
hash = "sha256-NlO07wBCutAJ1DgoT+rQFkuC9Y+DyF1YFlTwWpwsJzo=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
hatchling
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue