Unverified Commit 4ce27b8a authored by Emily Trau's avatar Emily Trau Committed by GitHub
Browse files

Merge pull request #270149 from r-ryantm/auto-update/python311Packages.rapidgzip

python311Packages.rapidgzip: 0.10.3 -> 0.10.4
parents 9227e49a b4ebded2
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

buildPythonPackage rec {
  pname = "rapidgzip";
  version = "0.10.3";
  version = "0.10.4";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-gtxF9V7OQb34Z0cCuTh/Lbe1ttCbdaY0zpM3KHHGGuw=";
    hash = "sha256-dTVQTxzgjHAUuoWA2+asMI5g2fIWvHEl46bdTIAxAvg=";
  };

  nativeBuildInputs = [ nasm ];
@@ -27,6 +27,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library for parallel decompression and seeking within compressed gzip files";
    homepage = "https://github.com/mxmlnkn/rapidgzip";
    changelog = "https://github.com/mxmlnkn/rapidgzip/blob/rapidgzip-v${version}/python/rapidgzip/CHANGELOG.md";
    license = licenses.mit; # dual MIT and asl20, https://internals.rust-lang.org/t/rationale-of-apache-dual-licensing/8952
    maintainers = with lib.maintainers; [ mxmlnkn ];
    platforms = platforms.all;