summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-03-03 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-03-03 04:20:00 +0000
commiteda0d785d3a7e268c5ad2c37d70e3469feb0d8e8 (patch)
treeb3de283b2ce272ca3f09b21f547486214a1d0cd1 /pkgs/shells
parent10836fa0fbce024ff06000c62c5611c53592c1da (diff)
downloadnixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.tar
nixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.tar.gz
nixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.tar.bz2
nixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.tar.lz
nixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.tar.xz
nixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.tar.zst
nixpkgs-eda0d785d3a7e268c5ad2c37d70e3469feb0d8e8.zip
xonsh: 0.9.24 -> 0.9.27
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/xonsh/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix
index 53bd137ddfa..a2cc4206620 100644
--- a/pkgs/shells/xonsh/default.nix
+++ b/pkgs/shells/xonsh/default.nix
@@ -8,14 +8,14 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "xonsh";
-  version = "0.9.24";
+  version = "0.9.27";
 
   # fetch from github because the pypi package ships incomplete tests
   src = fetchFromGitHub {
     owner  = "xonsh";
     repo   = "xonsh";
     rev    = version;
-    sha256 = "1nk7kbiv7jzmr6narsnr0nyzkhlc7xw3b2bksyq2j6nda67b9b3y";
+    sha256 = "09w6bl3qsygfs2ph2r423ndnbd74bzf67vp8587h2dkkfxlzjbad";
   };
 
   LC_ALL = "en_US.UTF-8";
@@ -34,7 +34,7 @@ python3Packages.buildPythonApplication rec {
   doCheck = !stdenv.isDarwin;
 
   checkPhase = ''
-    HOME=$TMPDIR pytest -k 'not test_repath_backslash and not test_os and not test_man_completion and not test_builtins and not test_main and not test_ptk_highlight and not test_pyghooks'
+    HOME=$TMPDIR pytest -k 'not test_repath_backslash and not test_os and not test_man_completion and not test_builtins and not test_main and not test_ptk_highlight and not test_pyghooks and not test_command_pipeline_capture and not test_git_dirty_working_directory_includes_untracked and not test_dirty_working_directory and not test_vc_get_branch'
     HOME=$TMPDIR pytest -k 'test_builtins or test_main' --reruns 5
     HOME=$TMPDIR pytest -k 'test_ptk_highlight'
   '';
@@ -46,7 +46,7 @@ python3Packages.buildPythonApplication rec {
   meta = with lib; {
     description = "A Python-ish, BASHwards-compatible shell";
     homepage = "https://xon.sh/";
-    changelog = "https://github.com/xonsh/xonsh/releases/tag/${version}";
+    changelog = "https://github.com/xonsh/xonsh/raw/${version}/CHANGELOG.rst";
     license = licenses.bsd3;
     maintainers = with maintainers; [ spwhitt vrthra ];
     platforms = platforms.all;