depot/third_party/nixpkgs/pkgs/development/python-modules/filecheck/default.nix

45 lines
937 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "filecheck";
version = "0.0.22";
format = "pyproject";
src = fetchFromGitHub {
owner = "mull-project";
repo = "FileCheck.py";
rev = "v${version}";
sha256 = "sha256-I2SypKkgcVuLyLiwNw5oWDb9qT56TbC6vbui8PEcziI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "poetry>=0.12" "poetry-core" \
--replace "poetry.masonry.api" "poetry.core.masonry.api"
'';
nativeBuildInputs = [
poetry-core
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"filecheck"
];
meta = with lib; {
homepage = "https://github.com/mull-project/FileCheck.py";
license = licenses.asl20;
description = "Python port of LLVM's FileCheck, flexible pattern matching file verifier";
maintainers = with maintainers; [ yorickvp ];
};
}