anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / std2 / default.nix
blobf25c28601d12347b7d30b7ed15db42e8963da47b
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6 }:
8 buildPythonPackage {
9   pname = "std2";
10   version = "0-unstable-2024-09-02";
11   pyproject = true;
13   src = fetchFromGitHub {
14     owner = "ms-jpq";
15     repo = "std2";
16     rev = "205d1f52e9b5438ef2b732c77e1144847cafa8d0";
17     hash = "sha256-WdUefadEk92cGnDI+KbQBpjg+d7KgI6bjlQlyhRRRFA=";
18   };
20   nativeBuildInputs = [ setuptools ];
22   meta = {
23     homepage = "https://github.com/ms-jpq/std2";
24     description = "Dependency to chadtree and coq_nvim plugins";
25     license = lib.licenses.gpl3Plus;
26     maintainers = with lib.maintainers; [ GaetanLepage ];
27   };