We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba1deff + 0204464 commit 948a31bCopy full SHA for 948a31b
pkgs/development/python-modules/oddsprout/default.nix
@@ -2,6 +2,7 @@
2
lib,
3
buildPythonPackage,
4
fetchFromGitHub,
5
+ fetchpatch2,
6
poetry-core,
7
pytestCheckHook,
8
pythonOlder,
@@ -30,6 +31,15 @@ buildPythonPackage rec {
30
31
ixia
32
];
33
34
+ patches = [
35
+ # https://github.com/trag1c/oddsprout/pull/8
36
+ (fetchpatch2 {
37
+ name = "allow-periods-in-path.patch";
38
+ url = "https://github.com/trag1c/oddsprout/commit/59713a797e7748d48f59f92397981c93a81f2c28.patch";
39
+ hash = "sha256-GAIQQi5s4D6KbTSgmP2hlBizLATxtJ/hzpWqPX4O0U4=";
40
+ })
41
+ ];
42
+
43
# has one test `test_main_recursion_error`
44
# that has a very low (~1%) but nonzero chance to fail,
45
# this is known upstream (https://github.com/trag1c/oddsprout/issues/5)
0 commit comments