Merge pull request #262760 from gador/todoman-fix-test

todoman: apply upstream patch

authored by

Weijia Wang and committed by
GitHub
a944b73a 7f4904bd

+9
+9
pkgs/applications/office/todoman/default.nix
··· 5 5 , installShellFiles 6 6 , jq 7 7 , python3 8 + , fetchpatch 8 9 }: 9 10 10 11 python3.pkgs.buildPythonApplication rec { ··· 18 19 rev = "refs/tags/v${version}"; 19 20 hash = "sha256-dxyI9ypZZBouTUF72wzvi7j+CeoQ9JNSiXrVeV7ForY="; 20 21 }; 22 + 23 + patches = [ 24 + (fetchpatch { 25 + name = "disable-broken-urwid-test.patch"; 26 + url = "https://github.com/pimutils/todoman/commit/7ff0d2e2e69e24df5d66fecc58f8cd0b4e5ced6d.patch"; 27 + hash = "sha256-MMNnnIthNqobexd8GaA6lYxzv5gr1l0e9YK+Ygeje2w="; 28 + }) 29 + ]; 21 30 22 31 SETUPTOOLS_SCM_PRETEND_VERSION = version; 23 32