##// END OF EJS Templates
py3: switched to python38 by default.
marcink -
r989:4fa1c36e python3
parent child Browse files
Show More
@@ -6,7 +6,7 b''
6 6
7 7 args@
8 8 { system ? builtins.currentSystem
9 , pythonPackages ? "python37Packages"
9 , pythonPackages ? "python38Packages"
10 10 , pythonExternalOverrides ? self: super: {}
11 11 , doCheck ? false
12 12 , ...
@@ -46,7 +46,7 b' self: super: {'
46 46 # - activate special python bindings
47 47 subversionrc =
48 48 let
49 py3c = self.python37Packages.buildPythonPackage rec {
49 py3c = self.python38Packages.buildPythonPackage rec {
50 50 pname = "py3c";
51 51 version = "1.0";
52 52 src = self.fetchurl {
@@ -65,7 +65,7 b' self: super: {'
65 65 };
66 66 in
67 67 let
68 pythonWithEnv = self.python37Packages.python.buildEnv.override {
68 pythonWithEnv = self.python38Packages.python.buildEnv.override {
69 69 extraLibs = [ py3c ];
70 70 };
71 71 in
@@ -536,9 +536,7 b' self: super: {'
536 536 self."setuptools-scm"
537 537 self."wheel"
538 538 ];
539 propagatedBuildInputs = [
540 self."importlib-metadata"
541 ];
539 propagatedBuildInputs = [];
542 540 meta = {
543 541 license = [ pkgs.lib.licenses.mit ];
544 542 };
@@ -700,7 +698,6 b' self: super: {'
700 698 propagatedBuildInputs = [
701 699 self."atomicwrites"
702 700 self."attrs"
703 self."importlib-metadata"
704 701 self."more-itertools"
705 702 self."packaging"
706 703 self."pluggy"
@@ -1,5 +1,5 b''
1 1 { pkgs ? (import <nixpkgs> {})
2 , pythonPackages ? "python37Packages"
2 , pythonPackages ? "python38Packages"
3 3 }:
4 4
5 5 with pkgs.lib;
@@ -2,7 +2,7 b''
2 2 # environment.
3 3
4 4 { pkgs ? (import <nixpkgs> {})
5 , pythonPackages ? "python37Packages"
5 , pythonPackages ? "python38Packages"
6 6 , doCheck ? false
7 7 }:
8 8
General Comments 0
You need to be logged in to leave comments. Login now