1{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytestcov }:
2
3buildPythonPackage rec {
4 pname = "property-manager";
5 version = "3.0";
6
7 src = fetchFromGitHub {
8 owner = "xolox";
9 repo = "python-property-manager";
10 rev = version;
11 sha256 = "1v7hjm7qxpgk92i477fjhpcnjgp072xgr8jrgmbrxfbsv4cvl486";
12 };
13
14 propagatedBuildInputs = [ coloredlogs humanfriendly verboselogs ];
15 checkInputs = [ pytest pytestcov ];
16
17 meta = with lib; {
18 description = "Useful property variants for Python programming";
19 homepage = "https://github.com/xolox/python-property-manager";
20 license = licenses.mit;
21 maintainers = with maintainers; [ eyjhb ];
22 };
23}