5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
35 lines
729 B
Nix
35 lines
729 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
regex,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rebulk";
|
|
version = "3.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DTC/gPygD6nGlxhaxHXarJveX2Rs4zOMn/XV3B69/rw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ regex ];
|
|
|
|
buildInputs = [ 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 = [ ];
|
|
};
|
|
}
|