lol

python313Packages.cryptodatahub: 0.12.5 -> 1.0.0

Changelog: https://gitlab.com/coroner/cryptodatahub/-/blob/1.0.0/CHANGELOG.rst

+8 -13
+8 -13
pkgs/development/python-modules/cryptodatahub/default.nix
··· 5 5 beautifulsoup4, 6 6 buildPythonPackage, 7 7 fetchFromGitLab, 8 - pathlib2, 9 8 pyfakefs, 10 9 python-dateutil, 11 10 pythonOlder, 12 11 setuptools, 13 - six, 12 + setuptools-scm, 14 13 unittestCheckHook, 15 14 urllib3, 16 15 }: 17 16 18 17 buildPythonPackage rec { 19 18 pname = "cryptodatahub"; 20 - version = "0.12.5"; 19 + version = "1.0.0"; 21 20 pyproject = true; 22 21 23 - disabled = pythonOlder "3.7"; 22 + disabled = pythonOlder "3.9"; 24 23 25 24 src = fetchFromGitLab { 26 25 owner = "coroner"; 27 26 repo = "cryptodatahub"; 28 27 rev = "refs/tags/v${version}"; 29 - hash = "sha256-jYMzvh4tgfLS7Za0MYHbWbczptAvENfzfTEV9Drlfto="; 28 + hash = "sha256-taYpSYkfucc9GQpVDiAZgCt/D3Akld20LkFEhsdKH0Q="; 30 29 }; 31 30 32 - postPatch = '' 33 - substituteInPlace requirements.txt \ 34 - --replace-fail "attrs>=20.3.0,<22.0.1" "attrs>=20.3.0" 35 - ''; 36 - 37 - build-system = [ setuptools ]; 31 + build-system = [ 32 + setuptools 33 + setuptools-scm 34 + ]; 38 35 39 36 dependencies = [ 40 37 asn1crypto 41 38 attrs 42 - pathlib2 43 39 python-dateutil 44 - six 45 40 urllib3 46 41 ]; 47 42