Merge pull request #15389 from rardiol/xonsh

xonsh: 0.1.3 -> 0.2.7

+5 -7
+5 -7
pkgs/shells/xonsh/default.nix
··· 1 - {stdenv, fetchFromGitHub, python3Packages}: 1 + {stdenv, fetchurl, python3Packages}: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 name = "xonsh-${version}"; 5 - version = "0.1.3"; 5 + version = "0.2.7"; 6 6 7 7 # The logo xonsh prints during build contains unicode characters, and this 8 8 # fails because locales have not been set up in the build environment. ··· 16 16 17 17 propagatedBuildInputs = [ python3Packages.ply ]; 18 18 19 - src = fetchFromGitHub { 20 - owner = "scopatz"; 21 - repo = "xonsh"; 22 - rev = version; 23 - sha256 = "04qnjqpz5y38g22irpph13j2a4hy7mk9pqvqz1mfimaf8zgmyh1n"; 19 + src = fetchurl { 20 + url = "mirror://pypi/x/xonsh/${name}.tar.gz"; 21 + sha256= "10pglgmzj6l0l8mb3r2rxnbigqigcqn9njcgdcrg7s1b409cq4md"; 24 22 }; 25 23 26 24 meta = with stdenv.lib; {