mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
38 lines
723 B
Nix
38 lines
723 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, coverage
|
|
, glibcLocales
|
|
, flake8
|
|
, matplotlib
|
|
, pandas
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tqdm";
|
|
version = "4.23.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "77b8424d41b31e68f437c6dd9cd567aebc9a860507cb42fbd880a5f822d966fe";
|
|
};
|
|
|
|
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";
|
|
|
|
meta = {
|
|
description = "A Fast, Extensible Progress Meter";
|
|
homepage = https://github.com/tqdm/tqdm;
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|