fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
40 lines
782 B
Nix
40 lines
782 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
humanfriendly,
|
|
verboselogs,
|
|
coloredlogs,
|
|
pytest,
|
|
pytest-cov,
|
|
}:
|
|
|
|
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 = [
|
|
pytest
|
|
pytest-cov
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Useful property variants for Python programming";
|
|
homepage = "https://github.com/xolox/python-property-manager";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ eyjhb ];
|
|
};
|
|
}
|