diff options
Diffstat (limited to 'pystitch.nix')
| -rw-r--r-- | pystitch.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pystitch.nix b/pystitch.nix new file mode 100644 index 00000000..0785b5c1 --- /dev/null +++ b/pystitch.nix @@ -0,0 +1,17 @@ +{ + pkgs ? import <nixpkgs> {}, +}: +with pkgs.python312Packages; + +buildPythonPackage { + pname = "pystitch"; + version = "0-git"; + src = pkgs.fetchFromGitHub { + owner = "inkstitch"; + repo = "pystitch"; + rev = "6771fbbbc265acc0ac48c7b0a8e3474a86f0c9a9"; + hash = "sha256-TkaVaiCzmwcb4Yke+yK68UvW6aMTCbwaxSMbZc+tk5Q="; + }; + build-system = [setuptools]; + pyproject = true; +} |
