48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, pythonOlder
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, gmt
|
|
, numpy
|
|
, netcdf4
|
|
, pandas
|
|
, packaging
|
|
, xarray
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygmt";
|
|
version = "0.3.1";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GenericMappingTools";
|
|
repo = "pygmt";
|
|
rev = "v${version}";
|
|
sha256 = "0v57n3by9dwckjfmrgf1km4y3gwzj2gk0s9ly64hlaf05zihqnvc";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pygmt/clib/loading.py \
|
|
--replace "env.get(\"GMT_LIBRARY_PATH\", \"\")" "env.get(\"GMT_LIBRARY_PATH\", \"${gmt}/lib\")"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ numpy netcdf4 pandas packaging xarray ];
|
|
|
|
doCheck = false; # requires network access
|
|
|
|
postBuild = "export HOME=$TMP";
|
|
|
|
pythonImportsCheck = [ "pygmt" ];
|
|
|
|
meta = with lib; {
|
|
description = "A Python interface for the Generic Mapping Tools";
|
|
homepage = "https://github.com/GenericMappingTools/pygmt";
|
|
license = licenses.bsd3;
|
|
# pygmt.exceptions.GMTCLibNotFoundError: Error loading the GMT shared library '/nix/store/r3xnnqgl89vrnq0kzxx0bmjwzks45mz8-gmt-6.1.1/lib/libgmt.dylib'
|
|
broken = stdenv.isDarwin;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
};
|
|
}
|