nixpkgs/pkgs/development/python-modules/tqdm/default.nix

63 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, setuptools-scm
2020-11-30 17:05:40 +00:00
, pytestCheckHook
, pytest-asyncio
, pytest-timeout
, numpy
, pandas
, rich
, tkinter
}:
buildPythonPackage rec {
pname = "tqdm";
2021-10-08 22:23:17 +00:00
version = "4.62.3";
src = fetchPypi {
inherit pname version;
2021-10-08 22:23:17 +00:00
sha256 = "d359de7217506c9851b7869f3708d8ee53ed70a1b8edbba4dbcb47442592920d";
};
2020-11-30 17:05:40 +00:00
nativeBuildInputs = [
setuptools-scm
2020-11-30 17:05:40 +00:00
];
checkInputs = [
pytestCheckHook
pytest-asyncio
pytest-timeout
# tests of optional features
numpy
rich
tkinter
] ++
2021-06-09 03:34:10 +00:00
# pandas is not supported on i686 or risc-v
lib.optional (!stdenv.isi686 && !stdenv.hostPlatform.isRiscV) pandas;
pytestFlagsArray = [
# pytest-asyncio 0.17.0 compat; https://github.com/tqdm/tqdm/issues/1289
"--asyncio-mode=strict"
];
2020-11-30 17:05:40 +00:00
# Remove performance testing.
# Too sensitive for on Hydra.
2021-04-16 14:18:32 +00:00
disabledTests = [
"perf"
];
2020-11-30 17:05:40 +00:00
LC_ALL="en_US.UTF-8";
2021-04-16 14:18:32 +00:00
pythonImportsCheck = [ "tqdm" ];
meta = with lib; {
description = "A Fast, Extensible Progress Meter";
homepage = "https://github.com/tqdm/tqdm";
2021-04-16 14:18:32 +00:00
changelog = "https://tqdm.github.io/releases/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fridh ];
};
}