blob: 902a8beceec874cc6d03c4b88daf7a065e43c51c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
natsort,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "seedir";
version = "0.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "earnestt1234";
repo = "seedir";
tag = "v${version}";
hash = "sha256-o2CUK00WdoYyLqbDlh+wa30Q23ZkWZC+RvGDCSiCwH4=";
};
build-system = [ setuptools ];
dependencies = [ natsort ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "seedir" ];
meta = {
description = "Module for for creating, editing, and reading folder tree diagrams";
homepage = "https://github.com/earnestt1234/seedir";
changelog = "https://github.com/earnestt1234/seedir/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "seedir";
};
}
|