Merge pull request #201633 from r-ryantm/auto-update/python310Packages.clickhouse-cityhash
python310Packages.clickhouse-cityhash: 1.0.2.3 -> 1.0.2.4
This commit is contained in:
commit
d1c1328207
1 changed files with 13 additions and 4 deletions
|
@ -2,21 +2,30 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, setuptools
|
, setuptools
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "clickhouse-cityhash";
|
pname = "clickhouse-cityhash";
|
||||||
version = "1.0.2.3";
|
version = "1.0.2.4";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0z8nl0ly2p1h6nygwxs6y40q8y424w40fkjv3jyf8vvcg4h7sdrg";
|
sha256 = "sha256-ezEl19CqE8LMTnWDqWWmv7CqlqEhMUdbRCVSustV9Pg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ setuptools ];
|
propagatedBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "clickhouse_cityhash" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"clickhouse_cityhash"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm";
|
description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm";
|
||||||
|
|
Loading…
Reference in a new issue