mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #294018 from Net-Mist/clickhouse-cityhash
python312Packages.clickhouse-cityhash: fix build for python 3.12
This commit is contained in:
commit
0c609df542
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue