Merge pull request #201633 from r-ryantm/auto-update/python310Packages.clickhouse-cityhash

python310Packages.clickhouse-cityhash: 1.0.2.3 -> 1.0.2.4

authored by Fabian Affolter and committed by GitHub d1c13282 3c0f6f55

+13 -4
+13 -4
pkgs/development/python-modules/clickhouse-cityhash/default.nix
··· 2 , buildPythonPackage 3 , fetchPypi 4 , setuptools 5 }: 6 7 buildPythonPackage rec { 8 pname = "clickhouse-cityhash"; 9 - version = "1.0.2.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "0z8nl0ly2p1h6nygwxs6y40q8y424w40fkjv3jyf8vvcg4h7sdrg"; 14 }; 15 16 - propagatedBuildInputs = [ setuptools ]; 17 18 doCheck = false; 19 - pythonImportsCheck = [ "clickhouse_cityhash" ]; 20 21 meta = with lib; { 22 description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm";
··· 2 , buildPythonPackage 3 , fetchPypi 4 , setuptools 5 + , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "clickhouse-cityhash"; 10 + version = "1.0.2.4"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "sha256-ezEl19CqE8LMTnWDqWWmv7CqlqEhMUdbRCVSustV9Pg="; 18 }; 19 20 + propagatedBuildInputs = [ 21 + setuptools 22 + ]; 23 24 doCheck = false; 25 + 26 + pythonImportsCheck = [ 27 + "clickhouse_cityhash" 28 + ]; 29 30 meta = with lib; { 31 description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm";