summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-25 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-25 04:20:00 -0500
commit27db92f412b181c4c4d4aa75ad4ba5e04559bcf6 (patch)
tree437b894b3e90b0c20e1bb9ec42de1315c7b88770 /pkgs/shells
parent3150fc9ba6a7fbecda188ac504a247a899f75b8f (diff)
xonsh: 0.9.14 -> 0.9.15
Changelog: https://github.com/xonsh/xonsh/releases/tag/0.9.15
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/xonsh/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix
index 2a1688480dbc..e8430fbfbff5 100644
--- a/pkgs/shells/xonsh/default.nix
+++ b/pkgs/shells/xonsh/default.nix
@@ -1,23 +1,21 @@
{ stdenv
, fetchFromGitHub
-, fetchpatch
, python3Packages
, glibcLocales
, coreutils
, git
-, python3
}:
python3Packages.buildPythonApplication rec {
pname = "xonsh";
- version = "0.9.14";
+ version = "0.9.15";
# fetch from github because the pypi package ships incomplete tests
src = fetchFromGitHub {
owner = "xonsh";
repo = "xonsh";
rev = version;
- sha256 = "03g8ilg4dxin3v3rzccdxx9zf8rvyqpxakn1dlpqbgsnwdwa19p4";
+ sha256 = "1bc1cysh2jnqi9ihmpgpbh5l9bjq9q9zgpxmdhg8d7i2w4d3z421";
};
LC_ALL = "en_US.UTF-8";
@@ -46,7 +44,8 @@ python3Packages.buildPythonApplication rec {
meta = with stdenv.lib; {
description = "A Python-ish, BASHwards-compatible shell";
- homepage = https://xon.sh/;
+ homepage = "https://xon.sh/";
+ changelog = "https://github.com/xonsh/xonsh/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ spwhitt vrthra ];
platforms = platforms.all;