File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
pkgs/development/python-modules/pygmt Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1818
1919buildPythonPackage rec {
2020 pname = "pygmt" ;
21- version = "0.13 .0" ;
21+ version = "0.14 .0" ;
2222 pyproject = true ;
2323
24- disabled = pythonOlder "3.9 " ;
24+ disabled = pythonOlder "3.11 " ;
2525
2626 src = fetchFromGitHub {
2727 owner = "GenericMappingTools" ;
2828 repo = "pygmt" ;
2929 tag = "v${ version } " ;
30- hash = "sha256-DO9KUlmt5EV+ioOSQ/BOcx4pP409f94dzmFwqK2MwMY =" ;
30+ hash = "sha256-8dzZuv9feiRyh3l8wV6+gYvc6N+yQnabgSbvw4ig+GY =" ;
3131 } ;
3232
3333 postPatch = ''
3434 substituteInPlace pygmt/clib/loading.py \
3535 --replace-fail "env.get(\"GMT_LIBRARY_PATH\")" "env.get(\"GMT_LIBRARY_PATH\", \"${ gmt } /lib\")"
3636 '' ;
3737
38- nativeBuildInputs = [ setuptools-scm ] ;
38+ build-system = [ setuptools-scm ] ;
3939
40- propagatedBuildInputs = [
40+ dependencies = [
4141 numpy
4242 netcdf4
4343 pandas
@@ -61,11 +61,11 @@ buildPythonPackage rec {
6161
6262 pythonImportsCheck = [ "pygmt" ] ;
6363
64- meta = with lib ; {
64+ meta = {
6565 description = "Python interface for the Generic Mapping Tools" ;
6666 homepage = "https://github.com/GenericMappingTools/pygmt" ;
67- license = licenses . bsd3 ;
67+ license = lib . licenses . bsd3 ;
6868 changelog = "https://github.com/GenericMappingTools/pygmt/releases/tag/v${ version } " ;
69- maintainers = with maintainers ; teams . geospatial . members ;
69+ maintainers = lib . teams . geospatial . members ;
7070 } ;
7171}
You can’t perform that action at this time.
0 commit comments