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

39 lines
741 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, nose
, coverage
, glibcLocales
, flake8
, stdenv
}:
buildPythonPackage rec {
pname = "tqdm";
2018-08-13 07:33:53 +00:00
version = "4.24.0";
src = fetchPypi {
inherit pname version;
2018-08-13 07:33:53 +00:00
sha256 = "60bbaa6700e87a250f6abcbbd7ddb33243ad592240ba46afce5305b15b406fad";
};
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;
meta = {
description = "A Fast, Extensible Progress Meter";
homepage = https://github.com/tqdm/tqdm;
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fridh ];
};
}