depot/third_party/nixpkgs/pkgs/development/python-modules/indexed-gzip/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
796 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
cython,
zlib,
}:
buildPythonPackage rec {
pname = "indexed_gzip";
version = "1.8.7";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-dryq1LLC+lVHj/i+m60ubGGItlX5/clCnwNGrexI92I=";
};
nativeBuildInputs = [
cython
setuptools
];
buildInputs = [ zlib ];
# Too complicated to get to work, not a simple pytest call.
doCheck = false;
pythonImportsCheck = [ "indexed_gzip" ];
meta = with lib; {
description = "Python library to seek within compressed gzip files";
homepage = "https://github.com/pauldmccarthy/indexed_gzip";
license = licenses.zlib;
maintainers = with lib.maintainers; [ mxmlnkn ];
};
}