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