Unverified Commit 3b1bc1fb authored by dish's avatar dish Committed by GitHub
Browse files

python3Packages.tree-sitter-yaml: 0.7.1 -> 0.7.2 (#451687)

parents 5eaf5762 64ec7db4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12,19 +12,19 @@

buildPythonPackage rec {
  pname = "tree-sitter-yaml";
  version = "0.7.1";
  version = "0.7.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tree-sitter-grammars";
    repo = "tree-sitter-yaml";
    tag = "v${version}";
    hash = "sha256-Z2L/aQWIyZ8cSqbfjm/i10fJP++yZ2tZgho0U3asA0g=";
    hash = "sha256-BX6TOfAZLW+0h2TNsgsLC9K2lfirraCWlBN2vCKiXQ4=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    hash = "sha256-QvqvyjnCgSuSiiY4SB5nB9S7LnGP1F+tySxue359SWY=";
    hash = "sha256-mrLuGmauboKHHk0zADPXpwgZfc83syXk0jmD93Y9Jq4=";
  };

  build-system = [