at 17.09-beta 631 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, coverage 6, glibcLocales 7, flake8 8, matplotlib 9, pandas 10}: 11 12buildPythonPackage rec { 13 pname = "tqdm"; 14 version = "4.15.0"; 15 name = "${pname}-${version}"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "6ec1dc74efacf2cda936b4a6cf4082ce224c76763bdec9f17e437c8cfcaa9953"; 20 }; 21 22 buildInputs = [ nose coverage glibcLocales flake8 ]; 23 24 LC_ALL="en_US.UTF-8"; 25 26 meta = { 27 description = "A Fast, Extensible Progress Meter"; 28 homepage = https://github.com/tqdm/tqdm; 29 license = with lib.licenses; [ mit ]; 30 maintainers = with lib.maintainers; [ fridh ]; 31 }; 32}