pkgs.motuclient: move application away from pythonPackages

+24 -27
+23
pkgs/applications/science/misc/motu-client/default.nix
··· 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 + }
+1 -1
pkgs/top-level/all-packages.nix
··· 2458 2458 inherit (perlPackages) IOTty; 2459 2459 }; 2460 2460 2461 - motuclient = python27Packages.motuclient; 2461 + motuclient = callPackage ../applications/science/misc/motu-client { }; 2462 2462 2463 2463 mpage = callPackage ../tools/text/mpage { }; 2464 2464
-26
pkgs/top-level/python-packages.nix
··· 6397 6397 }; 6398 6398 }; 6399 6399 6400 - motuclient = buildPythonPackage rec { 6401 - name = "motu-client-${version}"; 6402 - version = "1.0.8"; 6403 - 6404 - namePrefix = ""; 6405 - disabled = !isPy27; 6406 - 6407 - src = pkgs.fetchurl { 6408 - url = "https://github.com/quiet-oceans/motuclient-setuptools/archive/${name}.tar.gz"; 6409 - sha256 = "1naqmav312agn72iad9kyxwscn2lz4v1cfcqqi1qcgvc82vnwkw2"; 6410 - }; 6411 - 6412 - meta = { 6413 - homepage = https://github.com/quiet-oceans/motuclient-setuptools; 6414 - description = "CLI to query oceanographic data to Motu servers"; 6415 - longDescription = '' 6416 - Access data from (motu)[http://sourceforge.net/projects/cls-motu/] servers. 6417 - This is a refactored fork of the original release in order to simplify integration, 6418 - deployment and packaging. Upstream code can be found at 6419 - http://sourceforge.net/projects/cls-motu/ . 6420 - ''; 6421 - license = licenses.lgpl3Plus; 6422 - maintainers = [ maintainers.lsix ]; 6423 - }; 6424 - }; 6425 - 6426 6400 mwlib-ext = buildPythonPackage rec { 6427 6401 version = "0.13.2"; 6428 6402 name = "mwlib.ext-${version}";