about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-03-02 08:02:53 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-03-02 08:02:53 -0500
commit1d1b0a8ab8964ef10b2c96396afdf4d74a3e7ed4 (patch)
tree79c4507b2c3aea06fac598d604ab63ff9c082d79 /pkgs/applications
parent6a4c8b0a12e9a2508f049434a9b302c108a62a40 (diff)
parent8f4a7d6c4c4eae6fb82ccf2fc33a88e03d5fd8c4 (diff)
Merge pull request #13510 from lancelotsix/relocate_motu_client
pkgs.motuclient: move application away from pythonPackages
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/misc/motu-client/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/science/misc/motu-client/default.nix b/pkgs/applications/science/misc/motu-client/default.nix
new file mode 100644
index 0000000000000..b5e9fa6a51ee8
--- /dev/null
+++ b/pkgs/applications/science/misc/motu-client/default.nix
@@ -0,0 +1,23 @@
+{ python27Packages, fetchurl, lib } :
+python27Packages.buildPythonApplication rec {
+  name = "motu-client-${version}";
+  version = "1.0.8";
+
+  src = fetchurl {
+    url = "https://github.com/quiet-oceans/motuclient-setuptools/archive/${name}.tar.gz";
+    sha256 = "1naqmav312agn72iad9kyxwscn2lz4v1cfcqqi1qcgvc82vnwkw2";
+  };
+
+  meta = with lib; {
+    homepage = https://github.com/quiet-oceans/motuclient-setuptools;
+    description = "CLI to query oceanographic data to Motu servers";
+    longDescription = ''
+      Access data from (motu)[http://sourceforge.net/projects/cls-motu/] servers.
+      This is a refactored fork of the original release in order to simplify integration,
+      deployment and packaging. Upstream code can be found at
+      http://sourceforge.net/projects/cls-motu/ .
+    '';
+    license = licenses.lgpl3Plus;
+    maintainers = [ maintainers.lsix ];
+  };
+}