about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-28 20:13:48 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-28 21:01:09 +0200
commitdd3e2f9587d76cf59c4ad1de640c587131e6e3d6 (patch)
treea32c40b608c583cf9180b4a5f6d8b3d9abacb583 /pkgs
parent80d8655c15055472f0118a877351085cc22c1e92 (diff)
downloadnixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.tar
nixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.tar.gz
nixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.tar.bz2
nixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.tar.lz
nixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.tar.xz
nixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.tar.zst
nixlib-dd3e2f9587d76cf59c4ad1de640c587131e6e3d6.zip
python3Packages.metar: patch another failing test
https://github.com/python-metar/python-metar/issues/165
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/metar/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/metar/default.nix b/pkgs/development/python-modules/metar/default.nix
index 2c518561b999..9c4b30925783 100644
--- a/pkgs/development/python-modules/metar/default.nix
+++ b/pkgs/development/python-modules/metar/default.nix
@@ -22,6 +22,11 @@ buildPythonPackage rec {
       url = "https://github.com/python-metar/python-metar/commit/716fa76682e6c2936643d1cf62e3d302ef29aedd.patch";
       hash = "sha256-y82NN+KDryOiH+eG+2ycXCO9lqQLsah4+YpGn6lM2As=";
     })
+    (fetchpatch {
+      # Fix failing test: https://github.com/python-metar/python-metar/issues/165
+      url = "https://github.com/python-metar/python-metar/commit/a4f9a4764b99bb0313876366d30728169db2770b.patch";
+      hash = "sha256-sURHUb4gCKVMqEWFklTsxF0kr0SxC02Yr0287rZIvC0=";
+    })
   ];
 
   checkInputs = [ pytestCheckHook ];