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

40 lines
791 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, nose
, coverage
, glibcLocales
, flake8
}:
buildPythonPackage rec {
pname = "tqdm";
2020-04-21 11:27:08 +02:00
version = "4.45.0";
src = fetchPypi {
inherit pname version;
2020-04-21 11:27:08 +02:00
sha256 = "00339634a22c10a7a22476ee946bbde2dbe48d042ded784e4d88e0236eca5d81";
};
2019-12-16 01:20:19 +01:00
checkInputs = [ 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";
2019-02-14 08:37:31 +01:00
# 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 ];
};
}