Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ndeflib / default.nix
blob165aed8942dfc25000264775a09b141474709550
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , pythonAtLeast
6 , pythonOlder
7 , setuptools
8 }:
10 buildPythonPackage rec {
11   pname = "ndeflib";
12   version = "0.3.3";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "nfcpy";
19     repo = "ndeflib";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-cpfztE+/AW7P0J7QeTDfVGYc2gEkr7gzA352hC9bdTM=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   nativeCheckInputs = [
29     pytestCheckHook
30   ];
32   pythonImportsCheck = [
33     "ndef"
34   ];
36   disabledTests = [
37     # AssertionError caused due to wrong size
38     "test_decode_error"
39   ] ++ lib.optionals (pythonAtLeast "3.12") [
40     "test_encode_error"
41   ];
43   meta = with lib; {
44     description = "Python package for parsing and generating NFC Data Exchange Format messages";
45     homepage = "https://github.com/nfcpy/ndeflib";
46     changelog = "https://github.com/nfcpy/ndeflib/releases/tag/v${version}";
47     license = licenses.isc;
48     maintainers = with maintainers; [ fab ];
49   };