2016-02-26 16:33:45 +00:00
|
|
|
{ python27Packages, fetchurl, lib } :
|
|
|
|
python27Packages.buildPythonApplication rec {
|
2018-04-23 09:49:47 +01:00
|
|
|
pname = "motu-client";
|
|
|
|
version = "1.5.00";
|
2016-02-26 16:33:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-08-09 09:08:14 +01:00
|
|
|
url = "https://github.com/quiet-oceans/motuclient-setuptools/archive/${version}.tar.gz";
|
2018-04-23 09:49:47 +01:00
|
|
|
sha256 = "1iqsws3wa2gpb36ms21xmaxfi83i8p8cdya4cxpn4r47c8mz74x8";
|
2016-02-26 16:33:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/quiet-oceans/motuclient-setuptools;
|
|
|
|
description = "CLI to query oceanographic data to Motu servers";
|
|
|
|
longDescription = ''
|
2018-12-01 18:49:28 +00:00
|
|
|
Access data from (motu)[https://sourceforge.net/projects/cls-motu/] servers.
|
2016-02-26 16:33:45 +00:00
|
|
|
This is a refactored fork of the original release in order to simplify integration,
|
|
|
|
deployment and packaging. Upstream code can be found at
|
2018-12-01 18:49:28 +00:00
|
|
|
https://sourceforge.net/projects/cls-motu/ .
|
2016-02-26 16:33:45 +00:00
|
|
|
'';
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = [ maintainers.lsix ];
|
|
|
|
};
|
|
|
|
}
|