mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
python312Packages.cufflinks: remove
This commit is contained in:
parent
996e221e9c
commit
35ec91ba51
3 changed files with 1 additions and 60 deletions
|
@ -1,58 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
colorlover,
|
||||
ipython,
|
||||
ipywidgets,
|
||||
numpy,
|
||||
pandas,
|
||||
plotly,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cufflinks";
|
||||
version = "0.17.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-SMGzQG3AMABBIZZkie68VRjOpw/U4/FjebSRMoUBpkQ=";
|
||||
};
|
||||
|
||||
# replace duplicated pandas method
|
||||
# https://github.com/santosjorge/cufflinks/pull/249#issuecomment-1759619149
|
||||
postPatch = ''
|
||||
substituteInPlace tests.py \
|
||||
--replace-fail "from nose.tools import assert_equals" "def assert_equals(x, y): assert x == y" \
|
||||
--replace-fail "df.ix" "df.loc"
|
||||
'';
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
colorlover
|
||||
ipython
|
||||
ipywidgets
|
||||
numpy
|
||||
pandas
|
||||
plotly
|
||||
six
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "cufflinks" ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pytestFlagsArray = [ "tests.py" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Productivity Tools for Plotly + Pandas";
|
||||
homepage = "https://github.com/santosjorge/cufflinks";
|
||||
license = licenses.mit;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
|
@ -141,6 +141,7 @@ mapAliases ({
|
|||
criticality-score = throw "use pkgs.criticality-score instead"; # added 2024-12-31
|
||||
cryptacular = throw "cryptacular was removed, because it was disabled on all python version since 3.6 and last updated in 2021"; # Added 2024-05-13
|
||||
cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
|
||||
cufflinks = throw "cufflinks has removed, since it is abandoned and broken"; # added 2025-02-16
|
||||
cx_Freeze = cx-freeze; # added 2023-08-02
|
||||
cx_oracle = cx-oracle; # added 2024-01-03
|
||||
d2to1 = throw "d2to1 is archived and no longer works with setuptools v68"; # added 2023-07-30
|
||||
|
|
|
@ -2839,8 +2839,6 @@ self: super: with self; {
|
|||
|
||||
cucumber-tag-expressions = callPackage ../development/python-modules/cucumber-tag-expressions { };
|
||||
|
||||
cufflinks = callPackage ../development/python-modules/cufflinks { };
|
||||
|
||||
cupy = callPackage ../development/python-modules/cupy {
|
||||
cudaPackages = pkgs.cudaPackages.overrideScope (cu-fi: _: {
|
||||
# CuDNN 9 is not supported:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue