From e9eb05fc7d05009bd31fc0c3f9140f3d584ff932 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 22 Jun 2025 18:07:04 +0200 Subject: add default.nix and shell.nix --- pystitch.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pystitch.nix (limited to 'pystitch.nix') 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 {}, +}: +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; +} -- cgit v1.2.3