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