summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-01-06 12:00:36 +0100
committerGitHub <noreply@github.com>2020-01-06 12:00:36 +0100
commit8fff915659d3aafec55f07be2b0e2f500e96109d (patch)
tree6d36eb64d20d9b90d7fa103de9a5df0a607d03b5 /pkgs/applications/office
parentf4b4ef130a9e6691709a124160c334fe91381da3 (diff)
parent4a583c8be5cd0ab31bc09c5d295e0676179bcdc1 (diff)
downloadnixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.tar
nixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.tar.gz
nixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.tar.bz2
nixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.tar.lz
nixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.tar.xz
nixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.tar.zst
nixpkgs-8fff915659d3aafec55f07be2b0e2f500e96109d.zip
Merge pull request #76488 from jtojnar/more-python-cleanups
Another batch of Python 2 clean-ups
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/gnumeric/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/office/gnumeric/default.nix b/pkgs/applications/office/gnumeric/default.nix
index 979c960f7a8..710a66c25d8 100644
--- a/pkgs/applications/office/gnumeric/default.nix
+++ b/pkgs/applications/office/gnumeric/default.nix
@@ -1,10 +1,10 @@
 { stdenv, fetchurl, pkgconfig, intltool, perlPackages
-, goffice, gnome3, wrapGAppsHook, gtk3, bison, pythonPackages
+, goffice, gnome3, wrapGAppsHook, gtk3, bison, python3Packages
 , itstool
 }:
 
 let
-  inherit (pythonPackages) python pygobject3;
+  inherit (python3Packages) python pygobject3;
 in stdenv.mkDerivation rec {
   pname = "gnumeric";
   version = "1.12.46";