depot/third_party/nixpkgs/pkgs/development/python-modules/cbor2/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

53 lines
964 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
setuptools,
setuptools-scm,
# tests
hypothesis,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cbor2";
version = "5.6.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-HFM8UN3oa+8caVBgIFSg/6PDduiw4gx7j1sQh5P2mD4=";
};
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 = [ ];
};
}