mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.fints_4: drop
Only consumer was pretix-banktool, which now depends on fints 5.x.
This commit is contained in:
parent
8870a8c226
commit
ef3904a59b
3 changed files with 1 additions and 55 deletions
|
|
@ -1,53 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
setuptools,
|
||||
fetchFromGitHub,
|
||||
bleach,
|
||||
mt-940,
|
||||
pretix-banktool,
|
||||
requests,
|
||||
sepaxml,
|
||||
pytestCheckHook,
|
||||
pytest-mock,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "4.2.4";
|
||||
pname = "fints";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "raphaelm";
|
||||
repo = "python-fints";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-la5vpWBoZ7hZsAyjjCqHpFfOykDVosI/S9amox1dmzY=";
|
||||
};
|
||||
|
||||
pythonRemoveDeps = [ "enum-tools" ];
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
bleach
|
||||
mt-940
|
||||
requests
|
||||
sepaxml
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
pythonImportsCheck = [ "fints" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-mock
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/raphaelm/python-fints/";
|
||||
description = "Pure-python FinTS (formerly known as HBCI) implementation";
|
||||
license = lib.licenses.lgpl3Only;
|
||||
inherit (pretix-banktool.meta) maintainers;
|
||||
};
|
||||
}
|
||||
|
|
@ -223,6 +223,7 @@ mapAliases {
|
|||
fenics = throw "fenics has been removed, use fenics-dolfinx instead"; # added 2025-08-07
|
||||
filebrowser_safe = throw "'filebrowser_safe' has been renamed to/replaced by 'filebrowser-safe'"; # Converted to throw 2025-10-29
|
||||
filesplit = throw "filesplit has been removed, since it is unmaintained"; # added 2025-08-20
|
||||
fints_4 = throw "fints_4 has been removed, migrate to fints"; # added 2026-06-04
|
||||
flake8-future-import = throw "'flake8-future-import' has been removed as it was unmaintained upstream"; # Added 2026-03-22
|
||||
flask-security-too = throw "'flask-security-too' has been renamed to/replaced by 'flask-security'"; # Converted to throw 2025-10-29
|
||||
flask-silk = throw "flask-silk was removed, as it is unmaintained since 2018."; # added 2025-05-25
|
||||
|
|
|
|||
|
|
@ -5731,8 +5731,6 @@ self: super: with self; {
|
|||
|
||||
fints = callPackage ../development/python-modules/fints { };
|
||||
|
||||
fints_4 = callPackage ../development/python-modules/fints/4.nix { };
|
||||
|
||||
finvizfinance = callPackage ../development/python-modules/finvizfinance { };
|
||||
|
||||
fiona = callPackage ../development/python-modules/fiona { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue