summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-10-29 18:03:21 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-30 16:34:26 -0300
commitc90192b9ee8d49a68d18f1775d85f55e6a8fcedd (patch)
tree4cd4abeb1e92426b6bbe056fbf014299f85513a0 /pkgs/applications/office
parent4cfe0bcee39b2692318102a49b60fe5c20229b18 (diff)
downloadnixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.tar
nixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.tar.gz
nixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.tar.bz2
nixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.tar.lz
nixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.tar.xz
nixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.tar.zst
nixpkgs-c90192b9ee8d49a68d18f1775d85f55e6a8fcedd.zip
pyspread: migrate to by-name
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/pyspread/default.nix75
1 files changed, 0 insertions, 75 deletions
diff --git a/pkgs/applications/office/pyspread/default.nix b/pkgs/applications/office/pyspread/default.nix
deleted file mode 100644
index 61a4c7694b7..00000000000
--- a/pkgs/applications/office/pyspread/default.nix
+++ /dev/null
@@ -1,75 +0,0 @@
-{ lib
-, python3
-, fetchPypi
-, copyDesktopItems
-, wrapQtAppsHook
-, qtsvg
-, makeDesktopItem
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "pyspread";
-  version = "2.0.2";
-
-  src = fetchPypi {
-    inherit pname version;
-    hash = "sha256-rg2T9Y9FU2a+aWg0XM8jyQB9t8zDVlpad3TjUcx4//8=";
-  };
-
-  nativeBuildInputs = [
-    copyDesktopItems
-    wrapQtAppsHook
-  ];
-
-  buildInputs = [
-    qtsvg
-  ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    python-dateutil
-    markdown2
-    matplotlib
-    numpy
-    pyenchant
-    pyqt5
-    setuptools
-  ];
-
-  doCheck = false; # it fails miserably with a core dump
-
-  pythonImportsCheck = [ "pyspread" ];
-
-  desktopItems = [
-    (makeDesktopItem rec {
-      name = pname;
-      exec = name;
-      icon = name;
-      desktopName = "Pyspread";
-      genericName = "Spreadsheet";
-      comment = meta.description;
-      categories = [ "Office" "Development" "Spreadsheet" ];
-    })
-  ];
-
-  preFixup = ''
-    makeWrapperArgs+=("''${qtWrapperArgs[@]}")
-  '';
-
-  meta = with lib; {
-    homepage = "https://pyspread.gitlab.io/";
-    description = "A Python-oriented spreadsheet application";
-    longDescription = ''
-      pyspread is a non-traditional spreadsheet application that is based on and
-      written in the programming language Python. The goal of pyspread is to be
-      the most pythonic spreadsheet.
-
-      pyspread expects Python expressions in its grid cells, which makes a
-      spreadsheet specific language obsolete. Each cell returns a Python object
-      that can be accessed from other cells. These objects can represent
-      anything including lists or matrices.
-    '';
-    license = with licenses; gpl3Plus;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = with platforms; all;
-  };
-}