biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / seedir / default.nix
blobf0c1f25d13406490bbba7217724437b5ef75d836
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   natsort,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "seedir";
13   version = "0.5.0";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchFromGitHub {
19     owner = "earnestt1234";
20     repo = "seedir";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-ilL2KKN5sJclVcStO/kZoacsPoMgcFW1/8M/PQjxw/U=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [ natsort ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "seedir" ];
33   meta = with lib; {
34     description = "Module for for creating, editing, and reading folder tree diagrams";
35     homepage = "https://github.com/earnestt1234/seedir";
36     changelog = "https://github.com/earnestt1234/seedir/releases/tag/v${version}";
37     license = licenses.mit;
38     maintainers = with maintainers; [ fab ];
39     mainProgram = "seedir";
40   };