Merge pull request #166284 from SuperSandro2000/python-packages
This commit is contained in:
commit
a9200ef545
1 changed files with 22 additions and 25 deletions
|
@ -12,8 +12,6 @@
|
||||||
, python
|
, python
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
self:
|
self:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -40,12 +38,12 @@ let
|
||||||
}
|
}
|
||||||
else ff;
|
else ff;
|
||||||
|
|
||||||
buildPythonPackage = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix {
|
buildPythonPackage = makeOverridablePythonPackage (lib.makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix {
|
||||||
inherit namePrefix; # We want Python libraries to be named like e.g. "python3.6-${name}"
|
inherit namePrefix; # We want Python libraries to be named like e.g. "python3.6-${name}"
|
||||||
inherit toPythonModule; # Libraries provide modules
|
inherit toPythonModule; # Libraries provide modules
|
||||||
}));
|
}));
|
||||||
|
|
||||||
buildPythonApplication = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix {
|
buildPythonApplication = makeOverridablePythonPackage (lib.makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix {
|
||||||
namePrefix = ""; # Python applications should not have any prefix
|
namePrefix = ""; # Python applications should not have any prefix
|
||||||
toPythonModule = x: x; # Application does not provide modules.
|
toPythonModule = x: x; # Application does not provide modules.
|
||||||
}));
|
}));
|
||||||
|
@ -60,15 +58,14 @@ let
|
||||||
|
|
||||||
# Get list of required Python modules given a list of derivations.
|
# Get list of required Python modules given a list of derivations.
|
||||||
requiredPythonModules = drvs: let
|
requiredPythonModules = drvs: let
|
||||||
modules = filter hasPythonModule drvs;
|
modules = lib.filter hasPythonModule drvs;
|
||||||
in unique ([python] ++ modules ++ concatLists (catAttrs "requiredPythonModules" modules));
|
in lib.unique ([python] ++ modules ++ lib.concatLists (lib.catAttrs "requiredPythonModules" modules));
|
||||||
|
|
||||||
# Create a PYTHONPATH from a list of derivations. This function recurses into the items to find derivations
|
# Create a PYTHONPATH from a list of derivations. This function recurses into the items to find derivations
|
||||||
# providing Python modules.
|
# providing Python modules.
|
||||||
makePythonPath = drvs: lib.makeSearchPath python.sitePackages (requiredPythonModules drvs);
|
makePythonPath = drvs: lib.makeSearchPath python.sitePackages (requiredPythonModules drvs);
|
||||||
|
|
||||||
removePythonPrefix = name:
|
removePythonPrefix = lib.removePrefix namePrefix;
|
||||||
removePrefix namePrefix name;
|
|
||||||
|
|
||||||
# Convert derivation to a Python module.
|
# Convert derivation to a Python module.
|
||||||
toPythonModule = drv:
|
toPythonModule = drv:
|
||||||
|
@ -1889,7 +1886,7 @@ in {
|
||||||
coveralls = callPackage ../development/python-modules/coveralls { };
|
coveralls = callPackage ../development/python-modules/coveralls { };
|
||||||
|
|
||||||
cppe = callPackage ../development/python-modules/cppe {
|
cppe = callPackage ../development/python-modules/cppe {
|
||||||
cppe = pkgs.cppe;
|
inherit (pkgs) cppe;
|
||||||
};
|
};
|
||||||
|
|
||||||
cppheaderparser = callPackage ../development/python-modules/cppheaderparser { };
|
cppheaderparser = callPackage ../development/python-modules/cppheaderparser { };
|
||||||
|
@ -3636,7 +3633,7 @@ in {
|
||||||
|
|
||||||
gst-python = callPackage ../development/python-modules/gst-python {
|
gst-python = callPackage ../development/python-modules/gst-python {
|
||||||
inherit (pkgs) meson;
|
inherit (pkgs) meson;
|
||||||
gst-plugins-base = pkgs.gst_all_1.gst-plugins-base;
|
inherit (pkgs.gst_all_1) gst-plugins-base;
|
||||||
};
|
};
|
||||||
|
|
||||||
gtfs-realtime-bindings = callPackage ../development/python-modules/gtfs-realtime-bindings { };
|
gtfs-realtime-bindings = callPackage ../development/python-modules/gtfs-realtime-bindings { };
|
||||||
|
@ -4656,7 +4653,7 @@ in {
|
||||||
});
|
});
|
||||||
|
|
||||||
libgpuarray = callPackage ../development/python-modules/libgpuarray {
|
libgpuarray = callPackage ../development/python-modules/libgpuarray {
|
||||||
clblas = pkgs.clblas.override { boost = self.boost; };
|
clblas = pkgs.clblas.override { inherit (self) boost; };
|
||||||
cudaSupport = pkgs.config.cudaSupport or false;
|
cudaSupport = pkgs.config.cudaSupport or false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4670,7 +4667,7 @@ in {
|
||||||
inherit (pkgs) lzfse;
|
inherit (pkgs) lzfse;
|
||||||
};
|
};
|
||||||
|
|
||||||
libmodulemd = pipe pkgs.libmodulemd [
|
libmodulemd = lib.pipe pkgs.libmodulemd [
|
||||||
toPythonModule
|
toPythonModule
|
||||||
(p:
|
(p:
|
||||||
p.overrideAttrs (super: {
|
p.overrideAttrs (super: {
|
||||||
|
@ -4695,7 +4692,7 @@ in {
|
||||||
|
|
||||||
libpyvivotek = callPackage ../development/python-modules/libpyvivotek { };
|
libpyvivotek = callPackage ../development/python-modules/libpyvivotek { };
|
||||||
|
|
||||||
libpwquality = pipe pkgs.libpwquality [
|
libpwquality = lib.pipe pkgs.libpwquality [
|
||||||
toPythonModule
|
toPythonModule
|
||||||
(p: p.overrideAttrs (super: { meta = super.meta // { outputsToInstall = [ "py" ]; }; }))
|
(p: p.overrideAttrs (super: { meta = super.meta // { outputsToInstall = [ "py" ]; }; }))
|
||||||
(p: p.override { enablePython = true; inherit python; })
|
(p: p.override { enablePython = true; inherit python; })
|
||||||
|
@ -4707,7 +4704,7 @@ in {
|
||||||
inherit (self) python libxml2;
|
inherit (self) python libxml2;
|
||||||
});
|
});
|
||||||
|
|
||||||
librepo = pipe pkgs.librepo [
|
librepo = lib.pipe pkgs.librepo [
|
||||||
toPythonModule
|
toPythonModule
|
||||||
(p: p.overrideAttrs (super: { meta = super.meta // { outputsToInstall = [ "py" ]; }; }))
|
(p: p.overrideAttrs (super: { meta = super.meta // { outputsToInstall = [ "py" ]; }; }))
|
||||||
(p: p.override { inherit python; })
|
(p: p.override { inherit python; })
|
||||||
|
@ -4718,13 +4715,13 @@ in {
|
||||||
|
|
||||||
librouteros = callPackage ../development/python-modules/librouteros { };
|
librouteros = callPackage ../development/python-modules/librouteros { };
|
||||||
|
|
||||||
libsass = (callPackage ../development/python-modules/libsass {
|
libsass = callPackage ../development/python-modules/libsass {
|
||||||
inherit (pkgs) libsass;
|
inherit (pkgs) libsass;
|
||||||
});
|
};
|
||||||
|
|
||||||
libsavitar = callPackage ../development/python-modules/libsavitar { };
|
libsavitar = callPackage ../development/python-modules/libsavitar { };
|
||||||
|
|
||||||
libselinux = pipe pkgs.libselinux [
|
libselinux = lib.pipe pkgs.libselinux [
|
||||||
toPythonModule
|
toPythonModule
|
||||||
(p:
|
(p:
|
||||||
p.overrideAttrs (super: {
|
p.overrideAttrs (super: {
|
||||||
|
@ -5254,10 +5251,10 @@ in {
|
||||||
|
|
||||||
monkeyhex = callPackage ../development/python-modules/monkeyhex { };
|
monkeyhex = callPackage ../development/python-modules/monkeyhex { };
|
||||||
|
|
||||||
monosat = (pkgs.monosat.python {
|
monosat = pkgs.monosat.python {
|
||||||
inherit buildPythonPackage;
|
inherit buildPythonPackage;
|
||||||
inherit (self) cython;
|
inherit (self) cython;
|
||||||
});
|
};
|
||||||
|
|
||||||
monotonic = callPackage ../development/python-modules/monotonic { };
|
monotonic = callPackage ../development/python-modules/monotonic { };
|
||||||
|
|
||||||
|
@ -5787,7 +5784,7 @@ in {
|
||||||
openapi-spec-validator = callPackage ../development/python-modules/openapi-spec-validator { };
|
openapi-spec-validator = callPackage ../development/python-modules/openapi-spec-validator { };
|
||||||
|
|
||||||
openbabel-bindings = callPackage ../development/python-modules/openbabel-bindings {
|
openbabel-bindings = callPackage ../development/python-modules/openbabel-bindings {
|
||||||
openbabel = (callPackage ../development/libraries/openbabel { python = self.python; });
|
openbabel = callPackage ../development/libraries/openbabel { inherit (self) python; };
|
||||||
};
|
};
|
||||||
|
|
||||||
opencv3 = toPythonModule (pkgs.opencv3.override {
|
opencv3 = toPythonModule (pkgs.opencv3.override {
|
||||||
|
@ -6869,7 +6866,7 @@ in {
|
||||||
pyctr = callPackage ../development/python-modules/pyctr { };
|
pyctr = callPackage ../development/python-modules/pyctr { };
|
||||||
|
|
||||||
pycuda = callPackage ../development/python-modules/pycuda {
|
pycuda = callPackage ../development/python-modules/pycuda {
|
||||||
cudatoolkit = pkgs.cudatoolkit;
|
inherit (pkgs) cudatoolkit;
|
||||||
inherit (pkgs.stdenv) mkDerivation;
|
inherit (pkgs.stdenv) mkDerivation;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -9410,12 +9407,12 @@ in {
|
||||||
snuggs = callPackage ../development/python-modules/snuggs { };
|
snuggs = callPackage ../development/python-modules/snuggs { };
|
||||||
|
|
||||||
soapysdr = toPythonModule (pkgs.soapysdr.override {
|
soapysdr = toPythonModule (pkgs.soapysdr.override {
|
||||||
python = self.python;
|
inherit (self) python;
|
||||||
usePython = true;
|
usePython = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
soapysdr-with-plugins = toPythonModule (pkgs.soapysdr-with-plugins.override {
|
soapysdr-with-plugins = toPythonModule (pkgs.soapysdr-with-plugins.override {
|
||||||
python = self.python;
|
inherit (self) python;
|
||||||
usePython = true;
|
usePython = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10040,9 +10037,9 @@ in {
|
||||||
|
|
||||||
thumborPexif = callPackage ../development/python-modules/thumborpexif { };
|
thumborPexif = callPackage ../development/python-modules/thumborpexif { };
|
||||||
|
|
||||||
tkinter = let
|
tkinter = callPackage ../development/python-modules/tkinter {
|
||||||
py = python.override { x11Support=true; };
|
py = python.override { x11Support=true; };
|
||||||
in callPackage ../development/python-modules/tkinter { py = py; };
|
};
|
||||||
|
|
||||||
tidylib = callPackage ../development/python-modules/pytidylib { };
|
tidylib = callPackage ../development/python-modules/pytidylib { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue