mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ stdenv
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, python-utils
|
|
, sphinx
|
|
, flake8
|
|
, pytestpep8
|
|
, pytestflakes
|
|
, pytestcov
|
|
, pytestcache
|
|
, pytestrunner
|
|
, freezegun
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "progressbar2";
|
|
version = "3.39.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6eb5135b987caca4212d2c7abc2923d4ad5ba18bb34ccbe7044b3628f52efc2c";
|
|
};
|
|
|
|
postPatch = ''
|
|
rm -r tests/__pycache__
|
|
rm tests/*.pyc
|
|
'';
|
|
|
|
propagatedBuildInputs = [ python-utils ];
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
checkInputs = [
|
|
pytest sphinx flake8 pytestpep8 pytestflakes pytestcov
|
|
pytestcache freezegun
|
|
];
|
|
# ignore tests on the nix wrapped setup.py and don't flake .eggs directory
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} setup.py test --addopts "--ignore=.eggs"
|
|
runHook postCheck
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|