pythonPackages.tqdm: 4.54.1 -> 4.58.0

* Remove some now unnecessary checkInputs
* add pandas, rich, numpy and tkinter to checkInput which enables tests
  of optional tqdm features.
This commit is contained in:
sternenseemann 2021-02-26 19:09:49 +01:00
parent 3998c0ff22
commit 969b6dc4ab

View File

@ -1,28 +1,39 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose
, coverage
, glibcLocales
, flake8
, setuptools_scm , setuptools_scm
, pytestCheckHook , pytestCheckHook
, pytest-asyncio
, pytest-timeout
, numpy
, pandas
, rich
, tkinter
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tqdm"; pname = "tqdm";
version = "4.54.1"; version = "4.58.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1x9chlh3msikddmq8p8p5s5kgqqs48bclxgzz3vb9ygcwjimidiq"; sha256 = "1fjvaag1wy70gglxjkfnn0acrya7fbhzi4adbs1bpap8x03wffn2";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
setuptools_scm setuptools_scm
]; ];
checkInputs = [ nose coverage glibcLocales flake8 pytestCheckHook ]; checkInputs = [
pytestCheckHook
pytest-asyncio
pytest-timeout
# tests of optional features
numpy
pandas
rich
tkinter
];
# Remove performance testing. # Remove performance testing.
# Too sensitive for on Hydra. # Too sensitive for on Hydra.