We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1374324 + c96cedc commit f58a134Copy full SHA for f58a134
pkgs/development/python-modules/behave/default.nix
@@ -2,6 +2,7 @@
2
lib,
3
stdenv,
4
fetchFromGitHub,
5
+ fetchpatch2,
6
buildPythonPackage,
7
python,
8
pythonOlder,
@@ -31,6 +32,14 @@ buildPythonPackage rec {
31
32
hash = "sha256-G1o0a57MRczwjGLl/tEYC+yx3nxpk6+E58RvR9kVJpA=";
33
};
34
35
+ patches = [
36
+ # fix tests: https://github.com/behave/behave/pull/1214
37
+ (fetchpatch2 {
38
+ url = "https://github.com/behave/behave/pull/1214/commits/98b63a2524eff50ce1dc7360a46462a6f673c5ea.patch?full_index=1";
39
+ hash = "sha256-MwODEm6vhg/H8ksp5XBBP5Uhu2dhB5B1T6Owkxpy3v0=";
40
+ })
41
+ ];
42
+
43
build-system = [ setuptools ];
44
45
nativeCheckInputs = [
0 commit comments