python312Packages.stem: patch deprecated test assertions

This commit is contained in:
Tricia Tan 2024-05-13 01:01:55 +08:00
parent 068c0e3c95
commit d5c1f0dd30
No known key found for this signature in database
GPG Key ID: FB22123ECB537618

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, setuptools , setuptools
, cryptography , cryptography
, mock , mock
@ -23,6 +24,14 @@ buildPythonPackage rec {
hash = "sha256-Oc73Jx31SLzuhT9Iym5HHszKfflKZ+3aky5flXudvmI="; hash = "sha256-Oc73Jx31SLzuhT9Iym5HHszKfflKZ+3aky5flXudvmI=";
}; };
patches = [
# fixes deprecated test assertion, assertRaisesRegexp in python 3
(fetchpatch {
url = "https://github.com/trishtzy/stem/commit/d5012a1039f05c69ebe832723ce96ecbe8f79fe1.patch";
hash = "sha256-ozOTx4/c86sW/9Ss5eZ6ZxX63ByJT5x7JF6wBBd+VFY=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
setuptools setuptools
]; ];