2021-01-15 20:30:03 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-cov
|
|
|
|
, setuptools_scm
|
|
|
|
}:
|
2019-03-14 11:22:29 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cbor2";
|
2020-11-04 15:37:37 +00:00
|
|
|
version = "5.2.0";
|
2019-03-14 11:22:29 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-04 15:37:37 +00:00
|
|
|
sha256 = "a33aa2e5534fd74401ac95686886e655e3b2ce6383b3f958199b6e70a87c94bf";
|
2019-03-14 11:22:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
|
|
|
|
2021-01-15 20:30:03 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytest-cov
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "cbor2" ];
|
2019-03-14 11:22:29 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2021-01-15 20:30:03 +00:00
|
|
|
description = "Python CBOR (de)serializer with extensive tag support";
|
2020-04-06 14:49:14 +01:00
|
|
|
homepage = "https://github.com/agronholm/cbor2";
|
2019-03-14 11:22:29 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ taneb ];
|
|
|
|
};
|
|
|
|
}
|