10 buildPythonPackage rec {
11 pname = "naturalsort";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "python-naturalsort";
21 hash = "sha256-MBb8yCIs9DW77TKiV3qOHidt8/zi9m2dgyfB3xrdg3A=";
24 build-system = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "natsort" ];
31 description = "Simple natural order sorting API for Python that just works";
32 homepage = "https://github.com/xolox/python-naturalsort";
33 changelog = "https://github.com/xolox/python-naturalsort/releases/tag/${version}";
34 license = licenses.mit;
35 maintainers = with maintainers; [ eyjhb ];