python3Packages: trivial toPythonModule fixes
This commit is contained in:
@@ -2560,7 +2560,7 @@ self: super: with self; {
|
||||
|
||||
criticality-score = callPackage ../development/python-modules/criticality-score { };
|
||||
|
||||
crocoddyl = toPythonModule (callPackage ../development/libraries/crocoddyl {
|
||||
crocoddyl = toPythonModule (pkgs.crocoddyl.override {
|
||||
pythonSupport = true;
|
||||
python3Packages = self;
|
||||
});
|
||||
@@ -4880,7 +4880,8 @@ self: super: with self; {
|
||||
|
||||
gmpy = callPackage ../development/python-modules/gmpy { };
|
||||
|
||||
gmsh = toPythonModule (callPackage ../applications/science/math/gmsh {
|
||||
gmsh = toPythonModule (pkgs.gmsh.override {
|
||||
inherit (self) python;
|
||||
enablePython = true;
|
||||
});
|
||||
|
||||
@@ -6457,6 +6458,7 @@ self: super: with self; {
|
||||
|
||||
kmsxx = toPythonModule (pkgs.kmsxx.override {
|
||||
withPython = true;
|
||||
python3Packages = self;
|
||||
});
|
||||
|
||||
knack = callPackage ../development/python-modules/knack { };
|
||||
@@ -8802,7 +8804,7 @@ self: super: with self; {
|
||||
|
||||
neuron-full = pkgs.neuron-full.override { python3 = python; };
|
||||
|
||||
neuronpy = python.pkgs.toPythonModule neuron-full;
|
||||
neuronpy = toPythonModule neuron-full;
|
||||
|
||||
nevow = callPackage ../development/python-modules/nevow { };
|
||||
|
||||
@@ -9616,7 +9618,7 @@ self: super: with self; {
|
||||
|
||||
pbs-installer = callPackage ../development/python-modules/pbs-installer { };
|
||||
|
||||
pc-ble-driver-py = toPythonModule (callPackage ../development/python-modules/pc-ble-driver-py { });
|
||||
pc-ble-driver-py = callPackage ../development/python-modules/pc-ble-driver-py { };
|
||||
|
||||
pcapy-ng = callPackage ../development/python-modules/pcapy-ng {
|
||||
inherit (pkgs) libpcap; # Avoid confusion with python package of the same name
|
||||
@@ -15299,7 +15301,7 @@ self: super: with self; {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
tokenize-rt = toPythonModule (callPackage ../development/python-modules/tokenize-rt { });
|
||||
tokenize-rt = callPackage ../development/python-modules/tokenize-rt { };
|
||||
|
||||
tokenlib = callPackage ../development/python-modules/tokenlib { };
|
||||
|
||||
@@ -16750,7 +16752,9 @@ self: super: with self; {
|
||||
|
||||
vidstab = callPackage ../development/python-modules/vidstab { };
|
||||
|
||||
viennarna = toPythonModule pkgs.viennarna;
|
||||
viennarna = toPythonModule (pkgs.viennarna.override {
|
||||
python3 = self.python;
|
||||
});
|
||||
|
||||
viewstate = callPackage ../development/python-modules/viewstate { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user