about summary refs log tree commit diff
path: root/pkgs/development/python-modules/emv/default.nix
blob: 69d3a9ef910e87c8a579d2e46688754ec3a723d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  click,
  pyscard,
  pycountry,
  terminaltables,
  pytestCheckHook,
  setuptools,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "emv";
  version = "1.0.14";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "russss";
    repo = "python-emv";
    rev = "refs/tags/v${version}";
    hash = "sha256-MnaeQZ0rA3i0CoUA6HgJQpwk5yo4rm9e+pc5XzRd1eg=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail '"enum-compat==0.0.3",' "" \
      --replace-fail '"argparse==1.4.0",' "" \
      --replace-fail "click==7.1.2" "click" \
      --replace-fail "pyscard==2.0.0" "pyscard" \
      --replace-fail "pycountry==20.7.3" "pycountry" \
      --replace-fail "terminaltables==3.1.0" "terminaltables"
  '';

  build-system = [ setuptools ];

  dependencies = [
    click
    pyscard
    pycountry
    terminaltables
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "emv" ];

  meta = with lib; {
    description = "Implementation of the EMV chip-and-pin smartcard protocol";
    homepage = "https://github.com/russss/python-emv";
    changelog = "https://github.com/russss/python-emv/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ lukegb ];
    mainProgram = "emvtool";
  };
}