pythonPackages.gdal: aliases pkgs.gdal
`pkgs.gdal` ships python2 bindings. This allows to have a gdal package for each python package set with the appropriate bindings installed.
This commit is contained in:
parent
3614e950e4
commit
674aa05abc
1 changed files with 6 additions and 0 deletions
|
@ -10776,6 +10776,12 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
gdal = (pkgs.gdal.overrideDerivation (oldattrs: {
|
||||
name = "${python.libPrefix}-" + oldattrs.name;
|
||||
})).override {
|
||||
pythonPackages = self;
|
||||
};
|
||||
|
||||
gdrivefs = buildPythonPackage rec {
|
||||
version = "0.14.3";
|
||||
name = "gdrivefs-${version}";
|
||||
|
|
Loading…
Reference in a new issue