Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk 2019-10-17 10:49:56 +02:00
commit fc6706f126
2 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,7 @@
, lib
, fetchurl
, buildPythonPackage
, isPy3k, pythonOlder
, isPy3k, pythonOlder, isPy38
, astor
, gast
, google-pasta
@ -51,6 +51,8 @@ in buildPythonPackage {
inherit (packages) version;
format = "wheel";
disabled = isPy38;
src = let
pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion;
pyver = if stdenv.isDarwin then builtins.substring 0 1 pyVerNoDot else pyVerNoDot;

View file

@ -100,7 +100,7 @@ let
in {
inherit (python.passthru) isPy27 isPy33 isPy34 isPy35 isPy36 isPy37 isPy3k isPyPy pythonAtLeast pythonOlder;
inherit (python.passthru) isPy27 isPy33 isPy34 isPy35 isPy36 isPy37 isPy38 isPy3k isPyPy pythonAtLeast pythonOlder;
inherit python bootstrapped-pip buildPythonPackage buildPythonApplication;
inherit fetchPypi callPackage;
inherit hasPythonModule requiredPythonModules makePythonPath disabledIf;