···1+{ python27Packages, fetchurl, lib } :
2+python27Packages.buildPythonApplication rec {
3+ name = "motu-client-${version}";
4+ version = "1.0.8";
5+6+ src = fetchurl {
7+ url = "https://github.com/quiet-oceans/motuclient-setuptools/archive/${name}.tar.gz";
8+ sha256 = "1naqmav312agn72iad9kyxwscn2lz4v1cfcqqi1qcgvc82vnwkw2";
9+ };
10+11+ meta = with lib; {
12+ homepage = https://github.com/quiet-oceans/motuclient-setuptools;
13+ description = "CLI to query oceanographic data to Motu servers";
14+ longDescription = ''
15+ Access data from (motu)[http://sourceforge.net/projects/cls-motu/] servers.
16+ This is a refactored fork of the original release in order to simplify integration,
17+ deployment and packaging. Upstream code can be found at
18+ http://sourceforge.net/projects/cls-motu/ .
19+ '';
20+ license = licenses.lgpl3Plus;
21+ maintainers = [ maintainers.lsix ];
22+ };
23+}