pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / rebulk / default.nix
blob7bec155f52a1e4758b75b00f754cbd3eb828a8f9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7   regex,
8 }:
10 buildPythonPackage rec {
11   pname = "rebulk";
12   version = "3.2.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-DTC/gPygD6nGlxhaxHXarJveX2Rs4zOMn/XV3B69/rw=";
20   };
22   propagatedBuildInputs = [ regex ];
24   buildInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "rebulk" ];
28   meta = with lib; {
29     description = "Advanced string matching from simple patterns";
30     homepage = "https://github.com/Toilal/rebulk/";
31     changelog = "https://github.com/Toilal/rebulk/blob/v${version}/CHANGELOG.md";
32     license = licenses.mit;
33     maintainers = [ ];
34   };