Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-snappy / default.nix
blob1dfb5b83a6b57da7fdadd5bf9e574630d4302fb8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cramjam
5 , setuptools
6 , snappy
7 , unittestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "python-snappy";
12   version = "0.7.1";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-G8KdNiEdRLufBPPXzPuurrvC9ittQPT8Tt0fsWvFLBM=";
18   };
20   build-system = [
21     cramjam
22     setuptools
23   ];
25   buildInputs = [ snappy ];
27   dependencies = [
28     cramjam
29   ];
31   nativeCheckInputs = [ unittestCheckHook ];
33   meta = with lib; {
34     description = "Python library for the snappy compression library from Google";
35     homepage = "https://github.com/intake/python-snappy";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ ];
38   };