2021-07-27 12:37:29 -04:00

10 lines
229 B
Nix
Executable File

{ pkgs ? import <nixpkgs> {} }:
let python_with_deps = pkgs.python3.withPackages
(ps: [ps.numpy ps.numpy-stl]);
in pkgs.stdenv.mkDerivation rec {
name = "gfx_scratch";
buildInputs = with pkgs; [ python_with_deps ];
}