Files
2026-07-15 19:33:27 -04:00

62 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchurl,
pytestCheckHook,
python,
setuptools,
}:
let
table = fetchurl {
# See https://github.com/dahlia/iso4217/blob/main/setup.py#L19
url = "https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/lists/list-one.xml";
hash = "sha256-r1mRvI/qcOYOGKVzXHJGFdYxc+YlzpcdnWJExaF0Mp0=";
};
in
buildPythonPackage rec {
pname = "iso4217";
version = "1.16";
pyproject = true;
src = fetchFromGitHub {
owner = "dahlia";
repo = "iso4217";
tag = version;
hash = "sha256-C7TwGlbTwpcJ0rE7notWzZHthWzXKMPbHq00zMhfHeA=";
};
postPatch = ''
# get_version() appends a date to the version prefix
substituteInPlace setup.py \
--replace-fail 'version=get_version()' 'version="${version}"'
'';
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
preBuild = ''
# The table is already downloaded
export ISO4217_DOWNLOAD=0
# Copy the table file to satifiy the build process
cp -r ${table} iso4217/table.xml
'';
postInstall = ''
# Copy the table file
cp -r ${table} $out/${python.sitePackages}/iso4217/table.xml
'';
enabledTestPaths = [ "iso4217/test.py" ];
pythonImportsCheck = [ "iso4217" ];
meta = {
description = "ISO 4217 currency data package for Python";
homepage = "https://github.com/dahlia/iso4217";
license = lib.licenses.publicDomain;
maintainers = with lib.maintainers; [ fab ];
};
}