lol

python3Packages.oelint-parser: 2.11.3 -> 2.11.4

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>

+7 -2
+7 -2
pkgs/development/python-modules/oelint-parser/default.nix
··· 3 3 , fetchPypi 4 4 , buildPythonPackage 5 5 , regex 6 + , pip 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "oelint-parser"; 10 - version = "2.11.3"; 11 + version = "2.11.4"; 11 12 format = "setuptools"; 12 13 13 14 src = fetchPypi { 14 15 inherit version; 15 16 pname = "oelint_parser"; 16 - hash = "sha256-iR/MDHt3SEG29hSLqA36EXe8EBRZVntt+u6bwoujy0s="; 17 + hash = "sha256-r8qpD7UDh8ZfsdwVuv0ipihPEX3263t929mMYf143iA="; 17 18 }; 18 19 20 + buildInputs = [ pip ]; 19 21 propagatedBuildInputs = [ regex ]; 20 22 pythonImportsCheck = [ "oelint_parser" ]; 23 + 24 + # Fail to run inside the code the build. 25 + doCheck = false; 21 26 22 27 passthru.updateScript = nix-update-script { }; 23 28