Commit 142b4e6c authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.brotli: inherit src from brotli

parent 5eaddf61
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -10,18 +10,9 @@

buildPythonPackage rec {
  pname = "brotli";
  version = "1.2.0";
  inherit (brotli) version src;
  pyproject = true;

  src = fetchFromGitHub {
    owner = "google";
    repo = "brotli";
    tag = "v${version}";
    hash = "sha256-ePfllKdY12hOPuO9uHuXFZ3Bdib6BLD4ghiaeurJZ28=";
    # .gitattributes is not correct or GitHub does not parse it correct and the archive is missing the test data
    forceFetchGit = true;
  };

  build-system = [
    pkgconfig
    setuptools