python3Packages.pygmt: init at 0.2.0
This commit is contained in:
parent
b6c2504d8d
commit
0c102b283d
45
pkgs/development/python-modules/pygmt/default.nix
Normal file
45
pkgs/development/python-modules/pygmt/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, pythonOlder
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, gmt
|
||||
, numpy
|
||||
, netcdf4
|
||||
, pandas
|
||||
, packaging
|
||||
, xarray
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pygmt";
|
||||
version = "0.2.0";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GenericMappingTools";
|
||||
repo = "pygmt";
|
||||
rev = "v${version}";
|
||||
sha256 = "1yx1n6mxfmwg69ls5560nm6d3jxyghv27981iplz7m7990bbp468";
|
||||
};
|
||||
|
||||
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;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
};
|
||||
}
|
@ -5022,6 +5022,8 @@ in {
|
||||
|
||||
pygmo = callPackage ../development/python-modules/pygmo { };
|
||||
|
||||
pygmt = callPackage ../development/python-modules/pygmt { };
|
||||
|
||||
pygobject2 = callPackage ../development/python-modules/pygobject { inherit (pkgs) pkgconfig; };
|
||||
|
||||
pygobject3 = callPackage ../development/python-modules/pygobject/3.nix { inherit (pkgs) meson pkgconfig; };
|
||||
|
Loading…
Reference in New Issue
Block a user