blob: a2abb087f97e7acec293239e1d9e50e39d1874c6 (
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
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
dek,
xmod,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "tdir";
version = "1.8.2";
pyproject = true;
src = fetchFromGitHub {
owner = "rec";
repo = "tdir";
rev = "v${version}";
hash = "sha256-YYQ33Blhqk/CbocqkB9Nh6qbzMjQT07fmzx+fDTvdw8=";
};
build-system = [ poetry-core ];
dependencies = [
dek
xmod
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tdir" ];
meta = {
description = "Create, fill a temporary directory";
homepage = "https://github.com/rec/tdir";
changelog = "https://github.com/rec/tdir/blob/${src.rev}/CHANGELOG";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|