NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.75k stars 13.86k forks source link

Package request: PyGLM #235502

Closed JesusSierralaya closed 11 months ago

JesusSierralaya commented 1 year ago

Project description

OpenGL Mathematics (GLM) library for Python

Metadata

JesusSierralaya commented 1 year ago

I'm using version 2.5.7 without issues, but can't run the latest 2.7.0. Here's my code, which might be helpful from my configuration.nix

 environment.systemPackages = with pkgs; [
    wget
        # more system packages
  (python3.withPackages(ps: with ps; [
    numpy
    # more python packages
    # PyGLM the most recent version has errors
    (
    buildPythonPackage rec {
      pname = "PyGLM";
      version = "2.5.7";
      src = fetchPypi {
        inherit pname version;
        sha256 = "38fdff84e6416decffe1c5874632807d58b98c5508cca3579bb2f5332e099fd8";
      };
      doCheck = false;
      #propagaBuildInputs = [
      #];
      }
    )
    # More packages
  ]))
  ];
natsukium commented 11 months ago

introduced in https://github.com/NixOS/nixpkgs/pull/244647