Files
nixpkgs/pkgs/development/python-modules/pyformlang/default.nix
Martin Weinelt b13cf2a566 python3Packages.pyformlang: 1.0.10 -> 1.0.11
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:52 +02:00

48 lines
788 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
networkx,
numpy,
pydot,
pytestCheckHook,
pythonOlder,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "pyformlang";
version = "1.0.11";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-4pLsi5z6ZMJrWS+vm3z8csT0sOsNUz8EWkYGHnXFzpk=";
};
build-system = [
setuptools
wheel
];
dependencies = [
networkx
numpy
pydot
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyformlang" ];
meta = with lib; {
description = "Framework for formal grammars";
homepage = "https://github.com/Aunsiels/pyformlang";
license = licenses.mit;
maintainers = with maintainers; [ natsukium ];
};
}