Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / indexed-zstd / default.nix
blobf9d643c8ff4974e6be8a10debd5c92f7bef9c74c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , cython
6 , zstd
7 }:
9 buildPythonPackage rec {
10   pname = "indexed_zstd";
11   version = "1.6.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-icCerrv6ihBjSTS4Fsw7qhoA5ha8yegfMVRiIOhTvvY=";
19   };
21   nativeBuildInputs = [ cython ];
23   buildInputs = [ zstd.dev ];
25   # has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "indexed_zstd" ];
30   meta = with lib; {
31     description = "Python library to seek within compressed zstd files";
32     homepage = "https://github.com/martinellimarco/indexed_zstd";
33     license = licenses.mit;
34     maintainers = with lib.maintainers; [ mxmlnkn ];
35     platforms = platforms.all;
36   };