dotfiles: use python3

+5 -5
+5 -5
pkgs/applications/misc/dotfiles/default.nix
··· 1 - { lib, pythonPackages }: 2 3 - pythonPackages.buildPythonApplication rec { 4 pname = "dotfiles"; 5 version = "0.6.4"; 6 7 - src = pythonPackages.fetchPypi { 8 inherit version pname; 9 sha256 = "03qis6m9r2qh00sqbgwsm883s4bj1ibwpgk86yh4l235mdw8jywv"; 10 }; ··· 12 # No tests in archive 13 doCheck = false; 14 15 - checkInputs = with pythonPackages; [ pytest ]; 16 - propagatedBuildInputs = with pythonPackages; [ click ]; 17 18 meta = with lib; { 19 description = "Easily manage your dotfiles";
··· 1 + { lib, python3Packages }: 2 3 + python3Packages.buildPythonApplication rec { 4 pname = "dotfiles"; 5 version = "0.6.4"; 6 7 + src = python3Packages.fetchPypi { 8 inherit version pname; 9 sha256 = "03qis6m9r2qh00sqbgwsm883s4bj1ibwpgk86yh4l235mdw8jywv"; 10 }; ··· 12 # No tests in archive 13 doCheck = false; 14 15 + checkInputs = with python3Packages; [ pytest ]; 16 + propagatedBuildInputs = with python3Packages; [ click ]; 17 18 meta = with lib; { 19 description = "Easily manage your dotfiles";