fix: fixed pkg dependencies for panoramax
This commit is contained in:
parent
1b1a3f7219
commit
3bee0c7402
13 changed files with 632 additions and 39 deletions
18
modules/common-modules/pkgs/python/default.nix
Normal file
18
modules/common-modules/pkgs/python/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{...}: {
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
python3 = prev.python3.override {
|
||||
packageOverrides = pythonPrev: pythonFinal: {
|
||||
h3 = pythonPrev.callPackage ./h3.nix {h3 = final.h3;};
|
||||
pygeofilter = pythonPrev.callPackage ./pygeofilter.nix {};
|
||||
pygeoif = pythonPrev.callPackage ./pygeoif.nix {};
|
||||
rfeed = pythonPrev.callPackage ./rfeed.nix {};
|
||||
pyexiv2 = pythonPrev.callPackage ./pyexiv2.nix {};
|
||||
geojson-pydantic = pythonPrev.callPackage ./geojson-pydantic.nix {};
|
||||
geopic-tag-reader = pythonPrev.callPackage ./geopic-tag-reader.nix {};
|
||||
};
|
||||
};
|
||||
python3Packages = final.python3.pkgs;
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue