depot/third_party/nixpkgs/pkgs/development/python-modules/textparser/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

34 lines
677 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "textparser";
version = "0.24.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-VvcI51qp0AKtt22CO6bvFm1+zsHj5MpMHKED+BdWgzU=";
};
nativeBuildInputs = [ setuptools-scm ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "textparser" ];
meta = with lib; {
homepage = "https://github.com/eerimoq/textparser";
description = "A text parser";
license = licenses.mit;
maintainers = with maintainers; [ gray-heron ];
};
}