python311Packages.cryptodatahub: refactor

This commit is contained in:
Fabian Affolter
2024-01-29 19:48:23 +01:00
parent 97b17f3236
commit 207bc85685
@@ -1,36 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitLab
# build-system
, setuptools
# dependencies
, asn1crypto
, attrs
, pathlib2
, python-dateutil
, six
, urllib3
# tests
, beautifulsoup4
, buildPythonPackage
, fetchFromGitLab
, pathlib2
, pyfakefs
, python-dateutil
, pythonOlder
, setuptools
, six
, unittestCheckHook
, urllib3
}:
buildPythonPackage rec {
pname = "cryptodatahub";
version = "0.10.1";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitLab {
owner = "coroner";
repo = "cryptodatahub";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-eLdK5gFrLnbIBB1NTeQzpdCLPdATVjzPn5LhhUsDuwo=";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace-warn "attrs>=20.3.0,<22.0.1" "attrs>=20.3.0"
'';
nativeBuildInputs = [
setuptools
];
@@ -44,14 +46,17 @@ buildPythonPackage rec {
urllib3
];
pythonImportsCheck = [ "cryptodatahub" ];
nativeCheckInputs = [
beautifulsoup4
pyfakefs
unittestCheckHook
];
pythonImportsCheck = [
"cryptodatahub"
];
preCheck = ''
# failing tests
rm test/updaters/test_common.py
@@ -60,7 +65,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Repository of cryptography-related data";
homepage = "https://gitlab.com/coroner/cryptodatahub";
changelog = "https://gitlab.com/coroner/cryptodatahub/-/blob/${src.rev}/CHANGELOG.rst";
changelog = "https://gitlab.com/coroner/cryptodatahub/-/blob/${version}/CHANGELOG.rst";
license = licenses.mpl20;
maintainers = with maintainers; [ ];
};