biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / xxhash / default.nix
blob3108d6f4ef5fc5c84f5da30d230f7a3bac289ad3
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "xxhash";
11   version = "3.4.1";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-A3nWzx/5h81CFgmiZM4CXnTzRuPhRd0QbAzC4+w/mak=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   pythonImportsCheck = [ "xxhash" ];
25   meta = with lib; {
26     description = "Python Binding for xxHash";
27     homepage = "https://github.com/ifduyue/python-xxhash";
28     changelog = "https://github.com/ifduyue/python-xxhash/blob/v${version}/CHANGELOG.rst";
29     license = licenses.bsd2;
30     maintainers = with maintainers; [ teh ];
31   };