mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 16:11:22 +00:00
python3Packages.pandas-ta: remove (#542195)
This commit is contained in:
@@ -1,53 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchurl,
|
||||
nix-update-script,
|
||||
numpy,
|
||||
pandas,
|
||||
python-dateutil,
|
||||
pytz,
|
||||
setuptools,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pandas-ta";
|
||||
version = "0.3.14b";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.pandas-ta.dev/assets/zip/pandas_ta-${version}.tar.gz";
|
||||
hash = "sha256-D6Na7IMdKBXqMLhxaIqNIKdrKIp74tJswAw1zYwJqZM=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pandas_ta/momentum/squeeze_pro.py \
|
||||
--replace-fail "import NaN" "import nan"
|
||||
'';
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
numpy
|
||||
pandas
|
||||
python-dateutil
|
||||
pytz
|
||||
setuptools
|
||||
six
|
||||
];
|
||||
|
||||
# PyTestCheckHook failing because of missing test dependency. Packages has been tested manually.
|
||||
doCheck = false;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
pythonImportsCheck = [ "pandas_ta" ];
|
||||
|
||||
meta = {
|
||||
description = "Technical Analysis Indicators";
|
||||
homepage = "https://www.pandas-ta.dev/";
|
||||
license = lib.licenses.unfree;
|
||||
maintainers = with lib.maintainers; [ derdennisop ];
|
||||
};
|
||||
}
|
||||
@@ -414,6 +414,7 @@ mapAliases {
|
||||
orm = throw "orm has been removed as it is unmaintained"; # added 2025-08-27
|
||||
paho-mqtt_2 = throw "'paho-mqtt_2' has been renamed to/replaced by 'paho-mqtt'"; # Converted to throw 2025-10-29
|
||||
pam = throw "'pam' has been renamed to/replaced by 'python-pam'"; # Converted to throw 2025-10-29
|
||||
pandas-ta = throw "pandas-ta has been removed: abandoned upstream"; # added 2026-07-20
|
||||
paramz = throw "'paramz' has been removed as it is incompatible with Numpy 2"; # added 2025-11-10
|
||||
PasteDeploy = throw "'PasteDeploy' has been renamed to/replaced by 'pastedeploy'"; # Converted to throw 2025-10-29
|
||||
patator = throw "'patator' has been removed as it was dependant on removed packages and broken"; # Added 2025-12-30
|
||||
|
||||
@@ -12759,8 +12759,6 @@ self: super: with self; {
|
||||
|
||||
pandas-stubs = callPackage ../development/python-modules/pandas-stubs { };
|
||||
|
||||
pandas-ta = callPackage ../development/python-modules/pandas-ta { };
|
||||
|
||||
pandera = callPackage ../development/python-modules/pandera { };
|
||||
|
||||
pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };
|
||||
|
||||
Reference in New Issue
Block a user