about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/emv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/emv/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/emv/default.nix58
1 files changed, 58 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/emv/default.nix b/nixpkgs/pkgs/development/python-modules/emv/default.nix
new file mode 100644
index 000000000000..c7be7ba9e7fa
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/emv/default.nix
@@ -0,0 +1,58 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, click
+, pyscard
+, pycountry
+, terminaltables
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+  pname = "emv";
+  version = "1.0.14";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.4";
+
+  src = fetchFromGitHub {
+    owner = "russss";
+    repo = "python-emv";
+    rev = "v${version}";
+    hash = "sha256-MnaeQZ0rA3i0CoUA6HgJQpwk5yo4rm9e+pc5XzRd1eg=";
+  };
+
+  propagatedBuildInputs = [
+    click
+    pyscard
+    pycountry
+    terminaltables
+  ];
+
+  nativeCheckInputs = [
+    pytestCheckHook
+  ];
+
+  postPatch = ''
+    substituteInPlace setup.py \
+      --replace '"enum-compat==0.0.3",' "" \
+      --replace '"argparse==1.4.0",' "" \
+      --replace "click==7.1.2" "click" \
+      --replace "pyscard==2.0.0" "pyscard" \
+      --replace "pycountry==20.7.3" "pycountry" \
+      --replace "terminaltables==3.1.0" "terminaltables"
+  '';
+
+  pythonImportsCheck = [
+    "emv"
+  ];
+
+  meta = with lib; {
+    description = "Implementation of the EMV chip-and-pin smartcard protocol";
+    mainProgram = "emvtool";
+    homepage = "https://github.com/russss/python-emv";
+    license = licenses.mit;
+    maintainers = with maintainers; [ lukegb ];
+  };
+}