Merge pull request #294018 from Net-Mist/clickhouse-cityhash

python312Packages.clickhouse-cityhash: fix build for python 3.12
This commit is contained in:
Fabian Affolter 2024-03-18 22:12:57 +01:00 committed by GitHub
commit 0c609df542
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, cython_3
, fetchPypi
, setuptools
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "clickhouse-cityhash";
version = "1.0.2.4";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,7 +18,8 @@ buildPythonPackage rec {
hash = "sha256-ezEl19CqE8LMTnWDqWWmv7CqlqEhMUdbRCVSustV9Pg=";
};
propagatedBuildInputs = [
nativeBuildInputs = [
cython_3
setuptools
];