summary refs log tree commit diff
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-03-03 03:28:44 +0100
committerajs124 <git@ajs124.de>2021-03-03 03:28:56 +0100
commit06352b165d300f14f65ea8acbe12f579007dc2b0 (patch)
tree2e45d0efcb6327bb8d98037b15857ff134c0b53f
parentf680a0f2a135c12e9180f37f2657dd5dcf4bb596 (diff)
downloadnixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.tar
nixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.tar.gz
nixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.tar.bz2
nixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.tar.lz
nixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.tar.xz
nixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.tar.zst
nixpkgs-06352b165d300f14f65ea8acbe12f579007dc2b0.zip
gixy: use python3
-rw-r--r--pkgs/tools/admin/gixy/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/admin/gixy/default.nix b/pkgs/tools/admin/gixy/default.nix
index 118457d4080..06656a9e033 100644
--- a/pkgs/tools/admin/gixy/default.nix
+++ b/pkgs/tools/admin/gixy/default.nix
@@ -1,11 +1,11 @@
-{ lib, fetchFromGitHub, python }:
+{ lib, fetchFromGitHub, python3 }:
 
-python.pkgs.buildPythonApplication rec {
+python3.pkgs.buildPythonApplication rec {
   pname = "gixy";
   version = "0.1.20";
 
   # package is only compatible with python 2.7 and 3.5+
-  disabled = with python.pkgs; !(pythonAtLeast "3.5" || isPy27);
+  disabled = with python3.pkgs; !(pythonAtLeast "3.5" || isPy27);
 
   # fetching from GitHub because the PyPi source is missing the tests
   src = fetchFromGitHub {
@@ -19,7 +19,7 @@ python.pkgs.buildPythonApplication rec {
     sed -ie '/argparse/d' setup.py
   '';
 
-  propagatedBuildInputs = with python.pkgs; [
+  propagatedBuildInputs = with python3.pkgs; [
     cached-property
     ConfigArgParse
     pyparsing