Commit 1da22e76 authored by Otavio Salvador's avatar Otavio Salvador
Browse files

python3Packages.oelint-parser: 2.11.3 -> 2.11.4

parent 8fc9bb20
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -3,22 +3,27 @@
, fetchPypi
, buildPythonPackage
, regex
, pip
}:

buildPythonPackage rec {
  pname = "oelint-parser";
  version = "2.11.3";
  version = "2.11.4";
  format = "setuptools";

  src = fetchPypi {
    inherit version;
    pname = "oelint_parser";
    hash = "sha256-iR/MDHt3SEG29hSLqA36EXe8EBRZVntt+u6bwoujy0s=";
    hash = "sha256-r8qpD7UDh8ZfsdwVuv0ipihPEX3263t929mMYf143iA=";
  };

  buildInputs = [ pip ];
  propagatedBuildInputs = [ regex ];
  pythonImportsCheck = [ "oelint_parser" ];

  # Fail to run inside the code the build.
  doCheck = false;

  passthru.updateScript = nix-update-script { };

  meta = with lib; {