depot/third_party/nixpkgs/pkgs/development/python-modules/flexparser/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

55 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
wheel,
# dependencies
typing-extensions,
# checks
pytestCheckHook,
pytest-mpl,
pytest-subtests,
}:
buildPythonPackage rec {
pname = "flexparser";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "hgrecco";
repo = "flexparser";
rev = version;
hash = "sha256-9ImG8uh1SZ+pAbqzWBkTVn+3EBAGzzdP8vqqP59IgIw=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ typing-extensions ];
nativeCheckInputs = [
pytestCheckHook
pytest-mpl
pytest-subtests
];
pythonImportsCheck = [ "flexparser" ];
meta = with lib; {
description = "Parsing made fun ... using typing";
homepage = "https://github.com/hgrecco/flexparser";
changelog = "https://github.com/hgrecco/flexparser/blob/${src.rev}/CHANGES";
license = licenses.bsd3;
maintainers = with maintainers; [ doronbehar ];
};
}