mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
44fd570d73
The previously provided patch is still necessary, as nix python reports an old version of macOS that has the bug, when in fact modern macOS does not have the misspelling. The patch has been upstreamed, so we take it to fix 1.9.9 in anticipation of the next release.
58 lines
2 KiB
Nix
58 lines
2 KiB
Nix
{ stdenv, fetchPypi, fetchpatch, buildPythonPackage, swig, pcsclite, PCSC }:
|
|
|
|
let
|
|
# Package does not support configuring the pcsc library.
|
|
withApplePCSC = stdenv.isDarwin;
|
|
|
|
inherit (stdenv.lib) getLib getDev optionalString optionals;
|
|
inherit (stdenv.hostPlatform.extensions) sharedLibrary;
|
|
in
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.9.9";
|
|
pname = "pyscard";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "082cjkbxadaz2jb4rbhr0mkrirzlqyqhcf3r823qb0q1k50ybgg6";
|
|
};
|
|
|
|
postPatch = if withApplePCSC then ''
|
|
substituteInPlace smartcard/scard/winscarddll.c \
|
|
--replace "/System/Library/Frameworks/PCSC.framework/PCSC" \
|
|
"${PCSC}/Library/Frameworks/PCSC.framework/PCSC"
|
|
'' else ''
|
|
substituteInPlace smartcard/scard/winscarddll.c \
|
|
--replace "libpcsclite.so.1" \
|
|
"${getLib pcsclite}/lib/libpcsclite${sharedLibrary}"
|
|
'';
|
|
|
|
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 ];
|
|
|
|
meta = {
|
|
homepage = "https://pyscard.sourceforge.io/";
|
|
description = "Smartcard library for python";
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = with stdenv.lib.maintainers; [ layus ];
|
|
};
|
|
}
|