filecheck: init at 0.0.22

main
Yorick van Pelt 2 years ago committed by Will Cohen
parent 215101a003
commit c3b5da2298
  1. 29
      pkgs/development/python-modules/filecheck/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,29 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, poetry
}:
buildPythonApplication rec {
pname = "filecheck";
version = "0.0.22";
format = "pyproject";
src = fetchFromGitHub {
owner = "mull-project";
repo = "FileCheck.py";
rev = "v${version}";
sha256 = "sha256-I2SypKkgcVuLyLiwNw5oWDb9qT56TbC6vbui8PEcziI=";
};
nativeBuildInputs = [ poetry ];
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 ];
};
}

@ -3038,6 +3038,8 @@ in {
filebytes = callPackage ../development/python-modules/filebytes { };
filecheck = callPackage ../development/python-modules/filecheck { };
filelock = callPackage ../development/python-modules/filelock { };
filemagic = callPackage ../development/python-modules/filemagic { };

Loading…
Cancel
Save