summaryrefslogtreecommitdiff
path: root/pystitch.nix
blob: 0785b5c1f66fbe8a1867b6dd6ba48ddacba01d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}