blob: 6c5e5bc899f2938e94ba18bf800ec203232e5b6c (
plain) (
blame)
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
39
40
41
42
43
44
45
46
47
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, natsort
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "seedir";
version = "0.4.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "earnestt1234";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-ioez5lBNyiBK3poL2Px3KtCQeM+Gh2d4iD3SoAIHFAk=";
};
propagatedBuildInputs = [
natsort
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"seedir"
];
pytestFlagsArray = [
"tests/tests.py"
];
meta = with lib; {
description = "Module for for creating, editing, and reading folder tree diagrams";
mainProgram = "seedir";
homepage = "https://github.com/earnestt1234/seedir";
changelog = "https://github.com/earnestt1234/seedir/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|