···11+{ python27Packages, fetchurl, lib } :
22+python27Packages.buildPythonApplication rec {
33+ name = "motu-client-${version}";
44+ version = "1.0.8";
55+66+ src = fetchurl {
77+ url = "https://github.com/quiet-oceans/motuclient-setuptools/archive/${name}.tar.gz";
88+ sha256 = "1naqmav312agn72iad9kyxwscn2lz4v1cfcqqi1qcgvc82vnwkw2";
99+ };
1010+1111+ meta = with lib; {
1212+ homepage = https://github.com/quiet-oceans/motuclient-setuptools;
1313+ description = "CLI to query oceanographic data to Motu servers";
1414+ longDescription = ''
1515+ Access data from (motu)[http://sourceforge.net/projects/cls-motu/] servers.
1616+ This is a refactored fork of the original release in order to simplify integration,
1717+ deployment and packaging. Upstream code can be found at
1818+ http://sourceforge.net/projects/cls-motu/ .
1919+ '';
2020+ license = licenses.lgpl3Plus;
2121+ maintainers = [ maintainers.lsix ];
2222+ };
2323+}