mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #103360 from jonringer/python39
[staging] python39Packages: recurseintoAttrs for package set
This commit is contained in:
commit
3eb6d01fa4
4 changed files with 9 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
|||
, lib
|
||||
, fetchurl
|
||||
, buildPythonPackage
|
||||
, isPy3k, pythonOlder, isPy38
|
||||
, isPy3k, pythonOlder, pythonAtLeast
|
||||
, astor
|
||||
, gast
|
||||
, google-pasta
|
||||
|
@ -50,8 +50,7 @@ in buildPythonPackage {
|
|||
inherit pname;
|
||||
inherit (packages) version;
|
||||
format = "wheel";
|
||||
|
||||
disabled = isPy38;
|
||||
disabled = pythonAtLeast "3.8";
|
||||
|
||||
src = let
|
||||
pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, lib
|
||||
, fetchurl
|
||||
, buildPythonPackage
|
||||
, isPy3k, pythonOlder, isPy38
|
||||
, isPy3k, pythonOlder, pythonAtLeast, isPy38
|
||||
, astor
|
||||
, gast
|
||||
, google-pasta
|
||||
|
@ -54,7 +54,7 @@ in buildPythonPackage {
|
|||
inherit (packages) version;
|
||||
format = "wheel";
|
||||
|
||||
disabled = isPy38;
|
||||
disabled = pythonAtLeast "3.8";
|
||||
|
||||
src = let
|
||||
pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue