Files
nixpkgs/pkgs/development/python-modules/rebulk/default.nix
2025-01-06 15:10:54 +01:00

39 lines
769 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
regex,
setuptools,
}:
buildPythonPackage rec {
pname = "rebulk";
version = "3.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-DTC/gPygD6nGlxhaxHXarJveX2Rs4zOMn/XV3B69/rw=";
};
build-system = [ setuptools ];
dependencies = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "rebulk" ];
meta = with lib; {
description = "Advanced string matching from simple patterns";
homepage = "https://github.com/Toilal/rebulk/";
changelog = "https://github.com/Toilal/rebulk/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
};
}