tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python310: 3.10.0-rc2 -> 3.10.0
Martin Weinelt
4 years ago
938d796b
77c4e2f8
+4
-3
2 changed files
expand all
collapse all
unified
split
doc
languages-frameworks
python.section.md
pkgs
development
interpreters
python
default.nix
+1
doc/languages-frameworks/python.section.md
···
833
833
* `pkgs.python37Packages`
834
834
* `pkgs.python38Packages`
835
835
* `pkgs.python39Packages`
836
836
+
* `pkgs.python310Packages`
836
837
* `pkgs.pypyPackages`
837
838
838
839
and the aliases
+3
-3
pkgs/development/interpreters/python/default.nix
···
37
37
keep = self: {
38
38
# TODO maybe only define these here so nothing is needed to be kept in sync.
39
39
inherit (self)
40
40
-
isPy27 isPy35 isPy36 isPy37 isPy38 isPy39 isPy3k isPyPy pythonAtLeast pythonOlder
40
40
+
isPy27 isPy35 isPy36 isPy37 isPy38 isPy39 isPy310 isPy3k isPyPy pythonAtLeast pythonOlder
41
41
python bootstrapped-pip buildPythonPackage buildPythonApplication
42
42
fetchPypi
43
43
hasPythonModule requiredPythonModules makePythonPath disabledIf
···
185
185
major = "3";
186
186
minor = "10";
187
187
patch = "0";
188
188
-
suffix = "rc2";
188
188
+
suffix = "";
189
189
};
190
190
-
sha256 = "091g5f0gqajhi21bwpvbrc44hpiilbsycw953ynvkds8hl45cnz7";
190
190
+
sha256 = "00mhn6kj4qkvkkv6hh2klnnjr0yk0c9hspp7njc7n6m1lvkzi6as";
191
191
inherit (darwin) configd;
192
192
inherit passthruFun;
193
193
};