blob: d05376bcb2794da0b51350b5c5b26b345a3e55a8 (
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
48
49
50
51
52
53
54
55
56
57
58
|
{ lib
, buildPythonPackage
, click
, fetchFromGitHub
, poetry-core
, pydantic
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, toml
}:
buildPythonPackage rec {
pname = "maison";
version = "1.4.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dbatten5";
repo = "maison";
rev = "refs/tags/v${version}";
hash = "sha256-2hUmk91wr5o2cV3un2nMoXDG+3GT7SaIOKY+QaZY3nw=";
};
pythonRelaxDeps = [
"pydantic"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
click
pydantic
toml
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"maison"
];
meta = with lib; {
description = "Library to read settings from config files";
mainProgram = "maison";
homepage = "https://github.com/dbatten5/maison";
changelog = "https://github.com/dbatten5/maison/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|