From 8f4a7d6c4c4eae6fb82ccf2fc33a88e03d5fd8c4 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 26 Feb 2016 17:33:45 +0100 Subject: pkgs.motuclient: move application away from pythonPackages --- .../science/misc/motu-client/default.nix | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/applications/science/misc/motu-client/default.nix (limited to 'pkgs/applications/science/misc/motu-client') 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 000000000000..b5e9fa6a51ee --- /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 ]; + }; +} -- cgit 1.4.1