depot/third_party/nixpkgs/pkgs/development/python-modules/h3/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

35 lines
793 B
Nix

{ stdenv
, buildPythonPackage
, cmake
, fetchPypi
, h3
, python
}:
buildPythonPackage rec {
pname = "h3";
version = "3.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "416e35d736ef6ec9c1f73b9d4a9d5c696cc2a7561811f8bcfa08c8c4912f2289";
};
patches = [
./disable-custom-install.patch
./hardcode-h3-path.patch
];
preBuild = ''
substituteInPlace h3/h3.py \
--subst-var-by libh3_path ${h3}/lib/libh3${stdenv.hostPlatform.extensions.sharedLibrary}
'';
meta = with stdenv.lib; {
homepage = "https://github.com/uber/h3-py";
description = "This library provides Python bindings for the H3 Core Library.";
license = licenses.asl20;
platforms = platforms.unix ++ platforms.darwin;
maintainers = [ maintainers.kalbasit ];
};
}