2018-01-16 09:46:30 +01:00
|
|
|
{ stdenv
|
2018-01-17 03:58:27 +01:00
|
|
|
, python
|
2018-01-16 09:46:30 +01:00
|
|
|
, buildPythonPackage
|
2019-01-22 15:53:25 +01:00
|
|
|
, fetchPypi
|
2018-01-16 09:46:30 +01:00
|
|
|
, pytest
|
|
|
|
, python-utils
|
2018-01-17 03:58:27 +01:00
|
|
|
, sphinx
|
|
|
|
, flake8
|
|
|
|
, pytestpep8
|
2019-02-16 09:02:30 +01:00
|
|
|
, pytest-flakes
|
2018-01-17 03:58:27 +01:00
|
|
|
, pytestcov
|
|
|
|
, pytestcache
|
2018-01-17 11:46:27 +01:00
|
|
|
, pytestrunner
|
2019-01-22 15:53:25 +01:00
|
|
|
, freezegun
|
2018-01-16 09:46:30 +01:00
|
|
|
}:
|
|
|
|
|
2018-01-17 03:58:27 +01:00
|
|
|
buildPythonPackage rec {
|
2018-01-16 09:46:30 +01:00
|
|
|
pname = "progressbar2";
|
2019-04-02 18:51:19 +02:00
|
|
|
version = "3.39.3";
|
2018-01-16 09:46:30 +01:00
|
|
|
|
2019-01-22 15:53:25 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-02 18:51:19 +02:00
|
|
|
sha256 = "0fgy4327xzn232br4as74r6ddg5v6ycmfwga7xybp4s1w0cm8nwf";
|
2018-01-16 09:46:30 +01:00
|
|
|
};
|
|
|
|
|
2019-01-22 15:53:25 +01:00
|
|
|
postPatch = ''
|
|
|
|
rm -r tests/__pycache__
|
|
|
|
rm tests/*.pyc
|
|
|
|
'';
|
|
|
|
|
2018-01-16 09:46:30 +01:00
|
|
|
propagatedBuildInputs = [ python-utils ];
|
2018-01-17 11:46:27 +01:00
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
2018-01-17 03:58:27 +01:00
|
|
|
checkInputs = [
|
2019-02-16 09:02:30 +01:00
|
|
|
pytest sphinx flake8 pytestpep8 pytest-flakes pytestcov
|
2019-01-22 15:53:25 +01:00
|
|
|
pytestcache freezegun
|
2018-01-17 03:58:27 +01:00
|
|
|
];
|
|
|
|
# ignore tests on the nix wrapped setup.py and don't flake .eggs directory
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
2018-01-20 13:31:14 +01:00
|
|
|
${python.interpreter} setup.py test --addopts "--ignore=.eggs"
|
2018-01-17 03:58:27 +01:00
|
|
|
runHook postCheck
|
|
|
|
'';
|
2018-01-16 09:46:30 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://progressbar-2.readthedocs.io/en/latest/;
|
|
|
|
description = "Text progressbar library for python";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ ashgillman ];
|
|
|
|
};
|
2018-01-17 03:58:27 +01:00
|
|
|
}
|