summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-03-27 11:48:50 +0100
committerGitHub <noreply@github.com>2021-03-27 11:48:50 +0100
commit0001e5c8dd1116601ea70071ceb83cf14c1c8845 (patch)
treea3690a6383ecfd68072323b75f3620cd2df23e94 /pkgs/shells
parent5ebacbf4740c4d0e790ccd8974076b88a5d0123a (diff)
parenteda0d785d3a7e268c5ad2c37d70e3469feb0d8e8 (diff)
downloadnixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.tar
nixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.tar.gz
nixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.tar.bz2
nixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.tar.lz
nixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.tar.xz
nixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.tar.zst
nixpkgs-0001e5c8dd1116601ea70071ceb83cf14c1c8845.zip
Merge pull request #117549 from marsam/update-xonsh
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;