python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / zstandard / default.nix
blobe902ea024198b58e0d9768f0c45c23735a2e88df
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   cffi,
6   hypothesis,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "zstandard";
12   version = "0.23.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-stjGLQjnJV9o96dAuuhbPJuOVGa6qcv39X8c3grGvAk=";
20   };
22   propagatedNativeBuildInputs = [ cffi ];
24   propagatedBuildInputs = [ cffi ];
26   nativeCheckInputs = [ hypothesis ];
28   pythonImportsCheck = [ "zstandard" ];
30   meta = with lib; {
31     description = "zstandard bindings for Python";
32     homepage = "https://github.com/indygreg/python-zstandard";
33     license = licenses.bsdOriginal;
34     maintainers = with maintainers; [ arnoldfarkas ];
35   };