nixpkgs/pkgs/development/python-modules/filecheck/default.nix
Martin Weinelt 1ec7b00db3 python3Packages.filecheck: Use buildPythonPackage
Build using poetry-core, enabled tests, expose as top-level attribute.
2022-10-02 18:52:16 +02:00

45 lines
931 B
Nix

{ 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
];
checkInputs = [
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 ];
};
}