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

41 lines
794 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
python,
pytestCheckHook,
pythonOlder,
six,
}:
buildPythonPackage rec {
pname = "funcparserlib";
version = "1.0.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "vlasovskikh";
repo = pname;
rev = version;
hash = "sha256-LE9ItCaEzEGeahpM3M3sSnDBXEr6uX5ogEkO5x2Jgzc=";
};
nativeBuildInputs = [ poetry-core ];
nativeCheckInputs = [
pytestCheckHook
six
];
pythonImportsCheck = [ "funcparserlib" ];
meta = with lib; {
description = "Recursive descent parsing library based on functional combinators";
homepage = "https://github.com/vlasovskikh/funcparserlib";
license = licenses.mit;
platforms = platforms.unix;
};
}