blob: 94762bed5b6fbae0ca8f09e961b9a52fa1c8948f (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
humanfriendly,
verboselogs,
coloredlogs,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "property-manager";
version = "3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-property-manager";
rev = version;
sha256 = "1v7hjm7qxpgk92i477fjhpcnjgp072xgr8jrgmbrxfbsv4cvl486";
};
propagatedBuildInputs = [
coloredlogs
humanfriendly
verboselogs
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
meta = {
description = "Useful property variants for Python programming";
homepage = "https://github.com/xolox/python-property-manager";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eyjhb ];
};
}
|