this post was submitted on 03 Apr 2025
12 points (100.0% liked)

libre

9934 readers
67 users here now

Welcome to libre

A comm dedicated to the fight for free software with an anti-capitalist perspective.

The struggle for libre computing cannot be disentangled from other forms of socialist reform. One must be willing to reject proprietary software as fiercely as they would reject capitalism. Luckily, we are not alone.

libretion

Resources

  1. Free Software, Free Society provides an excellent primer in the origins and theory around free software and the GNU Project, the pioneers of the Free Software Movement.
  2. Switch to GNU/Linux! If you're still using Windows in $CURRENT_YEAR, flock to Linux Mint!; Apple Silicon users will want to check out Asahi Linux.

Rules

  1. Be on topic: Posts should be about free software and other hacktivst struggles. Topics about general tech news should be in the technology comm or programming comm. That doesn't mean all posts have to be serious though, memes are welcome!
  2. Avoid using misleading terms/speading misinformation: Here's a great article about what those words are. In short, try to avoid parroting common Techbro lingo and topics.
  3. Avoid being confrontational: People are in different stages of liberating their computing, focus on informing rather than accusing. Debatebro nonsense is not tolerated.
  4. All site-wide rules still apply

Artwork

founded 4 years ago
MODERATORS
 

I'm trying to run trelby, some screenwriting software. I actually bricked my Ubuntu install when trying to set this up there because wxPython didn't install, I tried creating venvs and that didn't work either, and I ended up trying to delete Python entirely... So I ended up here.

I cloned the repo, set up a shell.nix with the required packages, and am now stuck with the same problem I had before: wxPython doesn't install.

More info

# shell.nix
let
  # We pin to a specific nixpkgs commit for reproducibility.
  # Last updated: 2024-04-29. Check for new commits at https://status.nixos.org/.
  pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/cf8cc1201be8bc71b7cbbbdaf349b22f4f99c7ae.tar.gz") {};
in pkgs.mkShell {
  packages = [
    (pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
      # select Python packages here
      setuptools
      wxPython
      lxml
      reportlab
      pytest
    ]))
  ];
}

Output from attempting to run nix-shell:

unpacking 'https://github.com/NixOS/nixpkgs/archive/cf8cc1201be8bc71b7cbbbdaf349b22f4f99c7ae.tar.gz' into the Git cache...
error:
       … while calling the 'derivationStrict' builtin
         at <nix/derivation-internal.nix>:37:12:
           36|
           37|   strict = derivationStrict drvAttrs;
             |            ^
           38|

       … while evaluating derivation 'nix-shell'
         whose name attribute is located at /nix/store/4ab6vrcph07w6ra79bc04fy8bbcmb9r0-source/pkgs/stdenv/generic/make-derivation.nix:331:7

       … while evaluating attribute 'nativeBuildInputs' of derivation 'nix-shell'
         at /nix/store/4ab6vrcph07w6ra79bc04fy8bbcmb9r0-source/pkgs/stdenv/generic/make-derivation.nix:375:7:
          374|       depsBuildBuild              = elemAt (elemAt dependencies 0) 0;
          375|       nativeBuildInputs           = elemAt (elemAt dependencies 0) 1;
             |       ^
          376|       depsBuildTarget             = elemAt (elemAt dependencies 0) 2;

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: undefined variable 'wxPython'
       at /home/edwinc/Documents/code/trelby/shell.nix:11:7:
           10|       setuptools
           11|       wxPython
             |       ^
           12|       lxml

Cheers!

Edit: solved! Just change the wxPython to wxpython on the shell.nix file, and probably also change the manual fetch from an outdated repo to <nixpkgs> as @Edie@hexbear.net recommended.

you are viewing a single comment's thread
view the rest of the comments
[–] hello_hello@hexbear.net 4 points 2 days ago* (last edited 2 days ago) (3 children)

Use a docker/podman container for managing python projects in NixOS NixOS doesn't follow the filesystem hierarchy standard so a lot of standard tooling won't work without extra steps.

The issue here is that the attribute "wxPython" does not exist in nixpkgs and you'll have to package it yourself. Trelby is also not packaged either.

Also: https://www.trelby.org/download/

There are pre-built binaries for Ubuntu, Fedora and flatpak from FlatHub. On NixOS you can setup flatpak via a module in your system config and its my recommendation if you're not going the docker/distrobox route. You don't need NixOS for this and I would just recommend something like Fedora Atomic with KDE (Fedora Kinoite)

The pypi installation method seems like more trouble than its worth.

[–] mayo_cider@hexbear.net 3 points 2 days ago (1 children)

I upvoted you out of solidarity but what the fuck, never do this

Use virtual enviroments and git to separate your projects

[–] hello_hello@hexbear.net 3 points 2 days ago* (last edited 2 days ago)

Huh what do you mean?

Edit: I guess I should have made it more clear that it's only advice for NixOS specifically. Docker is overkill otherwise

load more comments (1 replies)