Skip to content

Commit

Permalink
Merge pull request #285043 from otavio/bb-lsp
Browse files Browse the repository at this point in the history
python3Packages.oelint-parser: 2.13.11 -> 3.0.2, bitbake-language-server: 0.0.7 -> 0.0.8
  • Loading branch information
thiagokokada authored Feb 1, 2024
2 parents 905a9c8 + 372d3f5 commit 7f4574b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pkgs/by-name/bi/bitbake-language-server/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

python3.pkgs.buildPythonApplication rec {
pname = "bitbake-language-server";
version = "0.0.7";
version = "0.0.8";
format = "pyproject";

src = fetchFromGitHub {
owner = "Freed-Wu";
repo = pname;
rev = version;
hash = "sha256-FQKZtrzfjEkAIyzrJvI7qiB4gV2yAH9w1fwO6oLPhNc=";
hash = "sha256-WJpa2LP95vrJG/OjiLSx8zEPO5ZOw66M5s3r2dufQJA=";
};

nativeBuildInputs = with python3.pkgs; [
Expand Down
10 changes: 7 additions & 3 deletions pkgs/development/python-modules/oelint-parser/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@
, nix-update-script
, fetchPypi
, buildPythonPackage
, deprecated
, regex
, pip
}:

buildPythonPackage rec {
pname = "oelint-parser";
version = "2.13.11";
version = "3.0.2";
format = "setuptools";

src = fetchPypi {
inherit version;
pname = "oelint_parser";
hash = "sha256-Hr+2S4AGx0W+rrMFdAlN7/OcDTFYivZVYknD/sHWMDs=";
hash = "sha256-8Gagk3ijAlmIp0MQwuJ2REIUcoTlvdNcCK9k2RY8DOA=";
};

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

# Fail to run inside the code the build.
Expand Down

0 comments on commit 7f4574b

Please sign in to comment.