summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/rn/rns/package.nix
blob: b8d2c34c937bea8667ae2025537f53198694b764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  python3Packages,
}:

let
  pythonPackages = python3Packages.overrideScope (
    self: super: {
      lxmf = super.lxmf.override {
        propagateRns = false;
      };
    }
  );
in
pythonPackages.toPythonApplication (
  pythonPackages.rns.overridePythonAttrs (old: {
    dependencies = old.dependencies ++ [
      pythonPackages.lxmf
    ];
  })
)