2020-06-28 11:57:30 +01:00
|
|
|
{ stdenv, fetchPypi, fetchpatch, buildPythonPackage, swig, pcsclite, PCSC }:
|
2017-01-17 01:18:27 +00:00
|
|
|
|
2019-07-20 13:05:34 +01:00
|
|
|
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
|
|
|
|
|
2017-01-17 01:18:27 +00:00
|
|
|
buildPythonPackage rec {
|
2019-09-28 12:50:26 +01:00
|
|
|
version = "1.9.9";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyscard";
|
2017-01-17 01:18:27 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-09-28 12:50:26 +01:00
|
|
|
sha256 = "082cjkbxadaz2jb4rbhr0mkrirzlqyqhcf3r823qb0q1k50ybgg6";
|
2017-01-17 01:18:27 +00:00
|
|
|
};
|
|
|
|
|
2019-07-20 13:05:34 +01:00
|
|
|
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}"
|
2017-01-19 14:20:54 +00:00
|
|
|
'';
|
2017-01-17 01:18:27 +00:00
|
|
|
|
2019-07-20 13:05:34 +01:00
|
|
|
NIX_CFLAGS_COMPILE = optionalString (! withApplePCSC)
|
|
|
|
"-I ${getDev pcsclite}/include/PCSC";
|
2017-01-17 01:18:27 +00:00
|
|
|
|
2020-06-28 11:57:30 +01:00
|
|
|
# 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";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-07-20 13:05:34 +01:00
|
|
|
propagatedBuildInputs = if withApplePCSC then [ PCSC ] else [ pcsclite ];
|
2019-03-01 13:38:48 +00:00
|
|
|
nativeBuildInputs = [ swig ];
|
2017-01-17 01:18:27 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pyscard.sourceforge.io/";
|
2017-01-17 01:18:27 +00:00
|
|
|
description = "Smartcard library for python";
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2017-01-19 14:20:54 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ layus ];
|
2017-01-17 01:18:27 +00:00
|
|
|
};
|
|
|
|
}
|