blob: c9d2ecbaca4fbd94154324bbfac55d21a1194267 (
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
|
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
# build-system
, setuptools
, setuptools-scm
# tests
, hypothesis
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cbor2";
version = "5.6.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-5vCuJ1HC0zOpYOCAfAYRSU6xJFYxoWeWWsvBAFCUVdM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov" ""
'';
nativeBuildInputs = [
setuptools
setuptools-scm
];
pythonImportsCheck = [
"cbor2"
];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
meta = with lib; {
changelog = "https://github.com/agronholm/cbor2/releases/tag/${version}";
description = "Python CBOR (de)serializer with extensive tag support";
mainProgram = "cbor2";
homepage = "https://github.com/agronholm/cbor2";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}
|