mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
36 lines
781 B
Nix
36 lines
781 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, cmake
|
|
, fetchPypi
|
|
, h3
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "h3";
|
|
version = "3.4.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "07dlqpr1r4kzb3gci395plpss8gxvvrij40l6w0mylyg7fkab4m2";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|