about summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorConstantine Glen Evans <cevans@evanslabs.org>2020-03-23 17:41:52 -0700
committerJon <jonringer@users.noreply.github.com>2020-03-27 10:56:00 -0700
commit59fbc7acba1242df575190205681502399f48b1a (patch)
treeb8ca6e3d8a523033819af3cbeeee9de154348ed8 /pkgs/top-level/python-packages.nix
parent037c91b193eee5ab5088d25bd25aeab5ac2bce56 (diff)
downloadnixlib-59fbc7acba1242df575190205681502399f48b1a.tar
nixlib-59fbc7acba1242df575190205681502399f48b1a.tar.gz
nixlib-59fbc7acba1242df575190205681502399f48b1a.tar.bz2
nixlib-59fbc7acba1242df575190205681502399f48b1a.tar.lz
nixlib-59fbc7acba1242df575190205681502399f48b1a.tar.xz
nixlib-59fbc7acba1242df575190205681502399f48b1a.tar.zst
nixlib-59fbc7acba1242df575190205681502399f48b1a.zip
gwyddion: 2.48 -> 2.55 (and add options)
Gwyddion has a large number of optional dependencies. In this update,
those dependencies have been added with options set mostly to true,
and an option (default false) for working Python 2.7 support in the
program and in Python has been added. I have also added myself as a
maintainer as no maintainer is currently set.
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index e4a3781865ee..b0e080a7be8c 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2248,6 +2248,11 @@ in {
 
   eth-utils = callPackage ../development/python-modules/eth-utils { };
 
+  gwyddion = disabledIf isPy3k (toPythonModule (pkgs.gwyddion.override {
+    pythonSupport = true;
+    pythonPackages = self;
+  }));
+
   impacket = callPackage ../development/python-modules/impacket { };
 
   jsonlines = callPackage ../development/python-modules/jsonlines { };