nixos-configs/pkgs/coloryou/shell.nix

8 lines
182 B
Nix
Raw Normal View History

with import <nixpkgs> {};
with pkgs.python311Packages;
buildPythonPackage {
2023-11-22 15:33:16 -05:00
name = "coloryou";
src = ./.;
propagatedBuildInputs = [material-color-utilities utils];
}