Files
nixpkgs/pkgs/development/python-modules/cryptodatahub/default.nix
2026-06-14 06:18:01 +00:00

71 lines
1.4 KiB
Nix

{
lib,
asn1crypto,
attrs,
beautifulsoup4,
buildPythonPackage,
fetchFromGitLab,
pyfakefs,
pytestCheckHook,
python-dateutil,
setuptools,
setuptools-scm,
urllib3,
}:
buildPythonPackage (finalAttrs: {
pname = "cryptodatahub";
version = "1.2.1";
pyproject = true;
src = fetchFromGitLab {
owner = "coroner";
repo = "cryptodatahub";
tag = "v${finalAttrs.version}";
hash = "sha256-Zu8E3k6jHFK+IIHWOalmdv/mPGhT7JjgjFkGiLxA4iI=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
asn1crypto
attrs
python-dateutil
urllib3
];
nativeCheckInputs = [
beautifulsoup4
pyfakefs
pytestCheckHook
];
pythonImportsCheck = [ "cryptodatahub" ];
disabledTests = [
# fails due to certificate expiry
# see https://gitlab.com/coroner/cryptodatahub/-/work_items/38
"test_validity"
# pytest incorrectly collects abstract base classes
"TestClasses"
];
disabledTestPaths = [
# failing tests
"test/updaters/test_common.py"
# Tests require network access
"test/common/test_utils.py"
];
meta = {
description = "Repository of cryptography-related data";
homepage = "https://gitlab.com/coroner/cryptodatahub";
changelog = "https://gitlab.com/coroner/cryptodatahub/-/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
license = lib.licenses.mpl20;
teams = with lib.teams; [ ngi ];
};
})