summary refs log tree commit diff
path: root/pkgs/development/python-modules/cbor2/default.nix
blob: ef7b79989c450608ae1f4719f9327b9d8f5ab0a1 (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
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pytest-cov
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "cbor2";
  version = "5.4.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1jga5wj3kalf6zj5gyrmy6kwmxxkld52mvcgxc5gb5dmdhpl7gx8";
  };

  nativeBuildInputs = [ setuptools-scm ];

  checkInputs = [
    pytest-cov
    pytestCheckHook
  ];

  # https://github.com/agronholm/cbor2/issues/99
  disabledTests = lib.optionals stdenv.is32bit [
    "test_huge_truncated_bytes"
    "test_huge_truncated_string"
  ];

  pythonImportsCheck = [ "cbor2" ];

  meta = with lib; {
    description = "Python CBOR (de)serializer with extensive tag support";
    homepage = "https://github.com/agronholm/cbor2";
    license = licenses.mit;
    maintainers = with maintainers; [ taneb ];
  };
}