pythonPacakges.clickhouse-cityhash: init at 1.0.2.3
This commit is contained in:
parent
41c5eb83b3
commit
21d212d96e
@ -0,0 +1,27 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "clickhouse-cityhash";
|
||||||
|
version = "1.0.2.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0z8nl0ly2p1h6nygwxs6y40q8y424w40fkjv3jyf8vvcg4h7sdrg";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ setuptools ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "clickhouse_cityhash" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm";
|
||||||
|
homepage = "https://github.com/xzkostyan/python-cityhash";
|
||||||
|
license = licenses.upl;
|
||||||
|
maintainers = with maintainers; [ breakds ];
|
||||||
|
};
|
||||||
|
}
|
@ -1215,6 +1215,8 @@ in {
|
|||||||
|
|
||||||
click-threading = callPackage ../development/python-modules/click-threading { };
|
click-threading = callPackage ../development/python-modules/click-threading { };
|
||||||
|
|
||||||
|
clickhouse-cityhash = callPackage ../development/python-modules/clickhouse-cityhash {};
|
||||||
|
|
||||||
cliff = callPackage ../development/python-modules/cliff { };
|
cliff = callPackage ../development/python-modules/cliff { };
|
||||||
|
|
||||||
clifford = callPackage ../development/python-modules/clifford { };
|
clifford = callPackage ../development/python-modules/clifford { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user