python312Packages.osmnx: 1.9.3 → 2.0.0 (#360529)
[NixPkgs.git] / pkgs / development / python-modules / filecheck / default.nix
bloba42c824a92f01c396edf109fc615a4329c0c5b8a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   hatchling,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "filecheck";
11   version = "0.0.24";
12   format = "pyproject";
14   src = fetchFromGitHub {
15     owner = "mull-project";
16     repo = "FileCheck.py";
17     rev = "refs/tags/v${version}";
18     hash = "sha256-VbMlCqGd3MVpj0jEKjSGC2L0s/3e/d53b+2eZcXZneo=";
19   };
21   nativeBuildInputs = [ hatchling ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "filecheck" ];
27   meta = with lib; {
28     changelog = "https://github.com/mull-project/FileCheck.py/releases/tag/v${version}";
29     homepage = "https://github.com/mull-project/FileCheck.py";
30     license = licenses.asl20;
31     description = "Python port of LLVM's FileCheck, flexible pattern matching file verifier";
32     mainProgram = "filecheck";
33     maintainers = with maintainers; [ yorickvp ];
34   };