pythonPackages.coloredlogs: remove obsolete patch

authored by Tobias Mayer and committed by Jon e5a097a8 c057e8df

+10 -8
+10 -8
pkgs/development/python-modules/coloredlogs/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, stdenv, isPy3k, fetchpatch, humanfriendly, verboselogs, capturer, pytest, mock, utillinux }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , humanfriendly 5 + , verboselogs 6 + , capturer 7 + , pytest 8 + , mock 9 + , utillinux 10 + }: 2 11 3 12 buildPythonPackage rec { 4 13 pname = "coloredlogs"; ··· 10 19 rev = version; 11 20 sha256 = "0rnmxwrim4razlv4vi3krxk5lc5ksck6h5374j8avqwplika7q2x"; 12 21 }; 13 - 14 - # patch by risicle 15 - patches = lib.optional (stdenv.isDarwin && isPy3k) (fetchpatch { 16 - name = "darwin-py3-capture-fix.patch"; 17 - url = "https://github.com/xolox/python-coloredlogs/pull/74.patch"; 18 - sha256 = "0pk7k94iz0gdripw623vzdl4hd83vwhsfzshl8pbvh1n6swi0xx9"; 19 - }); 20 22 21 23 checkPhase = '' 22 24 PATH=$PATH:$out/bin pytest . -k "not test_plain_text_output_format \