mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
Merge pull request #115730 from fabaff/license-yamllint
python3Packages.yamllint: enable tests
This commit is contained in:
commit
68763fd3f2
@ -1,26 +1,42 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib
|
||||||
, nose, pyyaml, pathspec }:
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pathspec
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, pyyaml
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "yamllint";
|
pname = "yamllint";
|
||||||
version = "1.25.0";
|
version = "1.25.0";
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519";
|
sha256 = "b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
propagatedBuildInputs = [
|
||||||
|
pyyaml
|
||||||
|
pathspec
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyyaml pathspec ];
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
# Two test failures
|
disabledTests = [
|
||||||
doCheck = false;
|
# Test failure could be related to https://github.com/adrienverge/yamllint/issues/334
|
||||||
|
"test_find_files_recursively"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "yamllint" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A linter for YAML files";
|
description = "A linter for YAML files";
|
||||||
homepage = "https://github.com/adrienverge/yamllint";
|
homepage = "https://github.com/adrienverge/yamllint";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ jonringer mikefaille ];
|
maintainers = with maintainers; [ jonringer mikefaille ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user