Merge pull request #35159 from dotlambda/faulthandler
pythonPackages.faulthandler: fix tests
This commit is contained in:
commit
4b17c50ef1
@ -1,7 +1,6 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage }:
|
{ stdenv, fetchPypi, buildPythonPackage, fetchpatch }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = "${pname}-${version}";
|
|
||||||
pname = "faulthandler";
|
pname = "faulthandler";
|
||||||
version = "3.0";
|
version = "3.0";
|
||||||
|
|
||||||
@ -10,6 +9,17 @@ buildPythonPackage rec {
|
|||||||
sha256 = "acc10e10909f0f956ba1b42b6c450ea0bdaaa27b3942899f65931396cfcdd36a";
|
sha256 = "acc10e10909f0f956ba1b42b6c450ea0bdaaa27b3942899f65931396cfcdd36a";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = https://github.com/vstinner/faulthandler/commit/67b661e.patch;
|
||||||
|
sha256 = "1nn8c9nq5qypja949hzz0n4yprsyr63wihf5g3gwrinm2nkjnnv7";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = https://github.com/vstinner/faulthandler/commit/07cbb7b.patch;
|
||||||
|
sha256 = "0fh6rjyjw7z1hsiy3sgdc8j9mncg1vlv3y0h4bplqyw18vq3srb3";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Dump the Python traceback";
|
description = "Dump the Python traceback";
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = stdenv.lib.licenses.bsd2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user