Commit 35820d5d authored by techknowlogick's avatar techknowlogick
Browse files
parent 5b3fdb13
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11,20 +11,20 @@

buildPythonPackage rec {
  pname = "jh2";
  version = "5.0.10";
  version = "5.0.11";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jawah";
    repo = "h2";
    tag = "v${version}";
    hash = "sha256-zytQ6UFNeIaF7cftp7C/RnXhuRbQxc1jhwVmFwUDF1Y=";
    hash = "sha256-k69U8O0c7z1TJASOWcndZA/LYTsX7nVfelhaS6FlN5g=";
    fetchSubmodules = true;
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit pname version src;
    hash = "sha256-W2BfuOhYL56gPd+j9YuJ7Ee3e+jT5m47h8qXihoMu1M=";
    hash = "sha256-ELZD3CIAv70DGoCgdK8T2yVLtib9ylSvoZPFOge6nIQ=";
  };

  build-system = [