diff options
Diffstat (limited to 'pkgs/development/python-modules/nfcpy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/nfcpy/default.nix | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/nfcpy/default.nix b/pkgs/development/python-modules/nfcpy/default.nix index bf5f538da33c..35500ccd6a11 100644 --- a/pkgs/development/python-modules/nfcpy/default.nix +++ b/pkgs/development/python-modules/nfcpy/default.nix @@ -1,14 +1,15 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, libusb1 -, mock -, ndeflib -, pydes -, pyserial -, pytest-mock -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + libusb1, + mock, + ndeflib, + pydes, + pyserial, + pytest-mock, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -38,9 +39,7 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ - "nfc" - ]; + pythonImportsCheck = [ "nfc" ]; disabledTestPaths = [ # AttributeError: 'NoneType' object has no attribute 'EC_KEY' @@ -51,11 +50,10 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "A Python module to read/write NFC tags or communicate with another NFC device"; + description = "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 ]; }; } - |