33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, blessed
|
|
, prefixed
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enlighten";
|
|
version = "1.11.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-V6vZij0/g0hO+fkfklX00jyLMJfs22R8e5sASdYAt/g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
blessed
|
|
prefixed
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"enlighten"
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'> is not...
|
|
"test_init"
|
|
# AssertionError: Invalid format specifier (deprecated since prefixed 0.4.0)
|
|
"test_floats_prefixed"
|
|
"test_subcounter_prefixed"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
# https://github.com/Rockhopper-Technologies/enlighten/issues/44
|
|
"test_autorefresh"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Enlighten Progress Bar for Python Console Apps";
|
|
homepage = "https://github.com/Rockhopper-Technologies/enlighten";
|
|
license = with licenses; [ mpl20 ];
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|