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

41 lines
798 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, nose
, coverage
, glibcLocales
, flake8
, stdenv
}:
buildPythonPackage rec {
pname = "tqdm";
2019-05-30 09:47:55 +03:00
version = "4.32.1";
src = fetchPypi {
inherit pname version;
2019-05-30 09:47:55 +03:00
sha256 = "0a860bf2683fdbb4812fe539a6c22ea3f1777843ea985cb8c3807db448a0f7ab";
};
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";
2019-02-14 10:37:31 +03: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 ];
};
}