2018-06-23 06:27:58 -07:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, swig, pcsclite, PCSC }:
|
2017-01-16 17:18:27 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-20 22:37:18 -07:00
|
|
|
version = "1.9.7";
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "pyscard";
|
2017-01-16 17:18:27 -08:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-20 22:37:18 -07:00
|
|
|
sha256 = "412c74c83e7401566e9d3d7b8b5ca965e74582a1f33179b3c1fabf1da73ebf80";
|
2017-01-16 17:18:27 -08:00
|
|
|
};
|
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
postPatch = ''
|
2017-01-19 06:20:54 -08:00
|
|
|
sed -e 's!"libpcsclite\.so\.1"!"${pcsclite}/lib/libpcsclite.so.1"!' \
|
|
|
|
-i smartcard/scard/winscarddll.c
|
|
|
|
'';
|
2017-01-16 17:18:27 -08:00
|
|
|
|
2017-01-19 06:20:54 -08:00
|
|
|
NIX_CFLAGS_COMPILE = "-isystem ${pcsclite}/include/PCSC/";
|
2017-01-16 17:18:27 -08:00
|
|
|
|
2017-01-19 06:20:54 -08:00
|
|
|
propagatedBuildInputs = [ pcsclite ];
|
2017-09-09 20:07:14 -07:00
|
|
|
buildInputs = [ swig ] ++ stdenv.lib.optional stdenv.isDarwin PCSC;
|
2017-01-16 17:18:27 -08:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://pyscard.sourceforge.io/;
|
2017-01-16 17:18:27 -08:00
|
|
|
description = "Smartcard library for python";
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2017-01-19 06:20:54 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ layus ];
|
2017-01-16 17:18:27 -08:00
|
|
|
};
|
|
|
|
}
|