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

33 lines
631 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, nose
, coverage
, glibcLocales
, flake8
, matplotlib
, pandas
}:
buildPythonPackage rec {
pname = "tqdm";
2017-08-24 20:34:20 +03:00
version = "4.15.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-08-24 20:34:20 +03:00
sha256 = "6ec1dc74efacf2cda936b4a6cf4082ce224c76763bdec9f17e437c8cfcaa9953";
};
buildInputs = [ nose coverage glibcLocales flake8 ];
LC_ALL="en_US.UTF-8";
meta = {
description = "A Fast, Extensible Progress Meter";
homepage = https://github.com/tqdm/tqdm;
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fridh ];
};
}