about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyscard
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2020-11-25 00:37:52 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-25 10:08:10 -0800
commite204319c740020330cd657c352d7f29b3d432f5a (patch)
treec37808cd08df537a0a679e7de43c94d123668427 /pkgs/development/python-modules/pyscard
parent4196aa9660a3168ef28dd783a0fff4e11695506e (diff)
pythonPackages.pyscard: Remove patch that is included in 1.9.9 and 2.0.0
Diffstat (limited to 'pkgs/development/python-modules/pyscard')
-rw-r--r--pkgs/development/python-modules/pyscard/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pyscard/default.nix b/pkgs/development/python-modules/pyscard/default.nix
index fefeaf7ebb55a..6007628d00dea 100644
--- a/pkgs/development/python-modules/pyscard/default.nix
+++ b/pkgs/development/python-modules/pyscard/default.nix
@@ -30,21 +30,6 @@ buildPythonPackage rec {
   NIX_CFLAGS_COMPILE = optionalString (! withApplePCSC)
     "-I ${getDev pcsclite}/include/PCSC";
 
-  # The error message differs depending on the macOS host version.
-  # Since Nix reports a constant host version, but proxies to the
-  # underlying library, it's not possible to determine the correct
-  # expected error message.  This patch allows both errors to be
-  # accepted.
-  # See: https://github.com/LudovicRousseau/pyscard/issues/77
-  # Building with python from nix on macOS version 10.13 or
-  # greater still causes this issue to occur.
-  patches = optionals withApplePCSC [
-    (fetchpatch {
-      url = "https://github.com/LudovicRousseau/pyscard/commit/945e9c4cd4036155691f6ce9706a84283206f2ef.patch";
-      sha256 = "19n8w1wzn85zywr6xf04d8nfg7sgzjyvxp1ccp3rgfr4mcc36plc";
-    })
-  ];
-
   propagatedBuildInputs = if withApplePCSC then [ PCSC ] else [ pcsclite ];
   nativeBuildInputs = [ swig ];