pythonPackages.spyder-kernels_0_5: drop

Versioned attributes in python-packages.nix should be avoided.
This commit is contained in:
Robert Schütz 2021-06-23 00:49:34 +02:00
parent 388ec14073
commit 1dc70c3b9e
2 changed files with 0 additions and 74 deletions

View file

@ -1,72 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, cloudpickle
, ipykernel
, wurlitzer
, jupyter_client
, pyzmq
, numpy
, pandas
, scipy
, matplotlib
, xarray
, pytestCheckHook
, flaky
, isPy3k
}:
buildPythonPackage rec {
pname = "spyder-kernels";
version = "0.5.2";
src = fetchFromGitHub {
owner = "spyder-ide";
repo = "spyder-kernels";
rev = "v${version}";
sha256 = "1yan589g0470y61bcyjy3wj13i94ndyffckqdyrg97vw2qhfrisb";
};
# requirement xarray not available on Py2k
disabled = !isPy3k;
propagatedBuildInputs = [
cloudpickle
ipykernel
wurlitzer
jupyter_client
pyzmq
];
checkInputs = [
numpy
pandas
scipy
matplotlib
xarray
pytestCheckHook
flaky
];
preCheck = ''
export JUPYTER_RUNTIME_DIR=$(mktemp -d)
'';
# skipped tests:
# turtle requires graphics
# cython test fails, I don't think this can ever access cython?
# umr pathlist test assumes standard directories, not compatible with nix
disabledTests = [
"test_turtle_launc"
"test_umr_skip_cython"
"test_umr_pathlist"
"test_user_sitepackages_in_pathlist"
];
meta = with lib; {
description = "Jupyter kernels for Spyder's console";
homepage = "https://github.com/spyder-ide/spyder-kernels";
license = licenses.mit;
maintainers = with maintainers; [ gebner marcus7070 ];
};
}

View file

@ -8155,8 +8155,6 @@ in {
spyder-kernels = callPackage ../development/python-modules/spyder-kernels { };
spyder-kernels_0_5 = callPackage ../development/python-modules/spyder-kernels/0.x.nix { };
sqlalchemy = callPackage ../development/python-modules/sqlalchemy { };
sqlalchemy-citext = callPackage ../development/python-modules/sqlalchemy-citext { };