mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
40 lines
789 B
Nix
40 lines
789 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, coverage
|
|
, glibcLocales
|
|
, flake8
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tqdm";
|
|
version = "4.36.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "abc25d0ce2397d070ef07d8c7e706aede7920da163c64997585d42d3537ece3d";
|
|
};
|
|
|
|
buildInputs = [ nose coverage glibcLocales flake8 ];
|
|
|
|
postPatch = ''
|
|
# Remove performance testing.
|
|
# Too sensitive for on Hydra.
|
|
rm tqdm/tests/tests_perf.py
|
|
'';
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
# doCheck = !stdenv.isDarwin;
|
|
# Test suite is too big and slow.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A Fast, Extensible Progress Meter";
|
|
homepage = https://github.com/tqdm/tqdm;
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|