aboutsummaryrefslogtreecommitdiff
path: root/pkgs/shells/xonsh
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-06-25 09:27:11 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-06-25 09:27:18 -0700
commitf3fc9f1eb01872b98f0a4f86c8f4d9447d085011 (patch)
tree06034686541a1b7eb1a4270dca1db0f1045ae4b1 /pkgs/shells/xonsh
parent9ef6dceca9c050c1b2477d6d7b28921afe06df2e (diff)
xonsh: 0.3.4 -> 0.4.1
* Disable windows tests that get erroneously executed
Diffstat (limited to 'pkgs/shells/xonsh')
-rw-r--r--pkgs/shells/xonsh/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix
index 92f7f20993f7..2f8c80264786 100644
--- a/pkgs/shells/xonsh/default.nix
+++ b/pkgs/shells/xonsh/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
name = "xonsh-${version}";
- version = "0.3.4";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "scopatz";
repo = "xonsh";
rev = version;
- sha256= "13inkj0vs8nqdghp3j19dardawfsdmcsfzsp77hlwavmw7sqjxzi";
+ sha256= "1d5w307vgpqjimhfipkwsnh3lvvajva9fjl58sg9hh322qicm01g";
};
## The logo xonsh prints during build contains unicode characters, and this
@@ -23,6 +23,8 @@ python3Packages.buildPythonApplication rec {
patchPhase = ''
rm xonsh/winutils.py
sed -i -e "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py
+ sed -ie 's|test_win_ipconfig|_test_win_ipconfig|g' tests/test_execer.py
+ sed -ie 's|test_ipconfig|_test_ipconfig|g' tests/test_execer.py
rm tests/test_main.py
rm tests/test_man.py
'';
@@ -31,14 +33,14 @@ python3Packages.buildPythonApplication rec {
HOME=$TMPDIR nosetests -x
'';
- buildInputs = with python3Packages; [ glibcLocales nose ];
+ buildInputs = with python3Packages; [ glibcLocales nose pytest ];
propagatedBuildInputs = with python3Packages; [ ply prompt_toolkit ];
meta = with stdenv.lib; {
description = "A Python-ish, BASHwards-compatible shell";
homepage = "http://xonsh.org";
license = licenses.bsd3;
- maintainers = with maintainers; [ spwhitt garbas ];
+ maintainers = with maintainers; [ spwhitt garbas vrthra ];
platforms = platforms.all;
};