python313Packages.clickclick: disable failing test (#455486)
This commit is contained in:
@@ -1,19 +1,20 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
|
click,
|
||||||
fetchFromGitea,
|
fetchFromGitea,
|
||||||
flake8,
|
flake8,
|
||||||
click,
|
|
||||||
pyyaml,
|
|
||||||
six,
|
|
||||||
pytestCheckHook,
|
|
||||||
pytest-cov-stub,
|
pytest-cov-stub,
|
||||||
|
pytestCheckHook,
|
||||||
|
pyyaml,
|
||||||
|
setuptools,
|
||||||
|
six,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "clickclick";
|
pname = "clickclick";
|
||||||
version = "20.10.2";
|
version = "20.10.2";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitea {
|
src = fetchFromGitea {
|
||||||
domain = "codeberg.org";
|
domain = "codeberg.org";
|
||||||
@@ -23,23 +24,32 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-gefU6CI4ibtvonsaKZmuffuUNUioBn5ODs72BI5zXOw=";
|
hash = "sha256-gefU6CI4ibtvonsaKZmuffuUNUioBn5ODs72BI5zXOw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [
|
build-system = [ setuptools ];
|
||||||
pytestCheckHook
|
|
||||||
pytest-cov-stub
|
dependencies = [
|
||||||
];
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
flake8
|
flake8
|
||||||
click
|
click
|
||||||
pyyaml
|
pyyaml
|
||||||
six
|
six
|
||||||
];
|
];
|
||||||
|
|
||||||
# test_cli asserts on exact quoting style of output
|
nativeCheckInputs = [
|
||||||
disabledTests = [ "test_cli" ];
|
pytestCheckHook
|
||||||
|
pytest-cov-stub
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "clickclick" ];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# Tests asserts on exact quoting style of output
|
||||||
|
"test_choice_default"
|
||||||
|
"test_cli"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Click command line utilities";
|
description = "Click command line utilities";
|
||||||
homepage = "https://codeberg.org/hjacobs/python-clickclick/";
|
homepage = "https://codeberg.org/hjacobs/python-clickclick/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user