summary refs log tree commit diff
path: root/pkgs/applications/science/misc
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2019-08-05 14:32:25 +0200
committerLancelot SIX <lsix@lancelotsix.com>2019-08-05 14:32:25 +0200
commit2e955ca4c51812fed49325f7527a7b04e8c70dad (patch)
treee3107c523d6f0704183e3b7ebe623ecfd88b830a /pkgs/applications/science/misc
parent554b6ea25e7d6e84d2f5f69648a3796829525b80 (diff)
downloadnixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.tar
nixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.tar.gz
nixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.tar.bz2
nixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.tar.lz
nixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.tar.xz
nixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.tar.zst
nixpkgs-2e955ca4c51812fed49325f7527a7b04e8c70dad.zip
motu_client: drop
This fork of cls-motu is unmaintained. Remove it from nixpkgs.
Diffstat (limited to 'pkgs/applications/science/misc')
-rw-r--r--pkgs/applications/science/misc/motu-client/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/applications/science/misc/motu-client/default.nix b/pkgs/applications/science/misc/motu-client/default.nix
deleted file mode 100644
index d4367ef7e2d..00000000000
--- a/pkgs/applications/science/misc/motu-client/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ python27Packages, fetchurl, lib } :
-python27Packages.buildPythonApplication rec {
-  pname = "motu-client";
-  version = "1.5.00";
-
-  src = fetchurl {
-    url = "https://github.com/quiet-oceans/motuclient-setuptools/archive/${version}.tar.gz";
-    sha256 = "1iqsws3wa2gpb36ms21xmaxfi83i8p8cdya4cxpn4r47c8mz74x8";
-  };
-
-  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)[https://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
-      https://sourceforge.net/projects/cls-motu/ .
-    '';
-    license = licenses.lgpl3Plus;
-    maintainers = [ maintainers.lsix ];
-  };
-}