nixpkgs/pkgs/development/python-modules/parsy/default.nix
2024-05-22 17:32:03 +02:00

35 lines
805 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "parsy";
version = "2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
repo = "parsy";
owner = "python-parsy";
rev = "refs/tags/v${version}";
hash = "sha256-/Bu3xZUpXI4WiYJKKWTJTdSFq8pwC1PFDw0Kr8s3Fe8=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "parsy" ];
meta = with lib; {
homepage = "https://github.com/python-parsy/parsy";
description = "Easy-to-use parser combinators, for parsing in pure Python";
changelog = "https://github.com/python-parsy/parsy/blob/v${version}/docs/history.rst";
license = licenses.mit;
maintainers = with maintainers; [ milibopp ];
};
}