forked from ConservationInternational/cplus-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
26 lines (23 loc) · 654 Bytes
/
flake.nix
File metadata and controls
26 lines (23 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
description = "Run QGIS with extra Python packages";
inputs.geospatial.url = "github:imincik/geospatial-nix.repo";
inputs.nixpkgs.follows = "geospatial/nixpkgs";
outputs = { self, geospatial, nixpkgs }: {
packages.x86_64-linux.default =
let
pkgs = import nixpkgs {
system = "x86_64-linux";
};
qgisWithExtras = geospatial.packages.x86_64-linux.qgis.override {
extraPythonPackages = ps: [
ps.pyqtwebengine
ps.jsonschema
ps.debugpy
ps.future
ps.psutil
ps.plotly
];
};
in qgisWithExtras;
};
}