xonsh: 0.9.14 -> 0.9.15

Changelog: https://github.com/xonsh/xonsh/releases/tag/0.9.15
This commit is contained in:
Mario Rodas 2020-03-25 04:20:00 -05:00
parent 3150fc9ba6
commit 27db92f412
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -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;