about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-03-23 06:29:14 +0100
committerGitHub <noreply@github.com>2022-03-23 06:29:14 +0100
commitcda6d4f18f58aa1989750dd7571706fa10119c86 (patch)
tree96f7610c97c0ca2ec369019cdc8327455d9b4324 /pkgs/development/python-modules
parent02ec7d6673e306cc832559d6fce485abfe4fa5d2 (diff)
parent607723da2450a30d3cd98c6dcb9e3d6a572734de (diff)
downloadnixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.tar
nixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.tar.gz
nixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.tar.bz2
nixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.tar.lz
nixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.tar.xz
nixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.tar.zst
nixlib-cda6d4f18f58aa1989750dd7571706fa10119c86.zip
Merge pull request #165370 from SuperSandro2000/brotli
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/brotli/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/brotli/default.nix b/pkgs/development/python-modules/brotli/default.nix
index d4cff163a0b1..ad247be16185 100644
--- a/pkgs/development/python-modules/brotli/default.nix
+++ b/pkgs/development/python-modules/brotli/default.nix
@@ -1,22 +1,23 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
-, pytestCheckHook }:
+, pytestCheckHook
+}:
 
 buildPythonPackage rec {
   pname = "brotli";
   version = "1.0.9";
 
-  # PyPI doesn't contain tests so let's use GitHub
   src = fetchFromGitHub {
     owner = "google";
     repo = pname;
     rev = "v${version}";
     sha256 = "sha256-tFnXSXv8t3l3HX6GwWLhEtgpqz0c7Yom5U3k47pWM7o=";
-    # for some reason, the test data isn't captured in releases, force a git checkout
+    # .gitattributes is not correct or GitHub does not parse it correct and the archive is missing the test data
     forceFetchGit = true;
   };
 
+  # only returns information how to really build
   dontConfigure = true;
 
   checkInputs = [
@@ -31,6 +32,6 @@ buildPythonPackage rec {
     homepage = "https://github.com/google/brotli";
     description = "Generic-purpose lossless compression algorithm";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ SuperSandro2000 ];
   };
 }