94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, libusb1
|
|
, mock
|
|
, ndeflib
|
|
, pydes
|
|
, pyserial
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nfcpy";
|
|
version = "1.0.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nfcpy";
|
|
repo = "nfcpy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-HFWOCiz6ISfxEeC6KPKNKGZoHvFjFGUn7QJWnwvJKYw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
libusb1
|
|
ndeflib
|
|
pydes
|
|
pyserial
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"nfc"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# AttributeError: 'NoneType' object has no attribute 'EC_KEY'
|
|
"tests/test_llcp_llc.py"
|
|
"tests/test_llcp_sec.py"
|
|
# Doesn't work on Hydra
|
|
"tests/test_clf_udp.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A Python module to read/write NFC tags or communicate with another NFC device";
|
|
homepage = "https://github.com/nfcpy/nfcpy";
|
|
changelog = "https://github.com/nfcpy/nfcpy/blob/v${version}/HISTORY.rst";
|
|
license = licenses.eupl11;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|
|
|