nixpkgs/pkgs/development/python-modules/property-manager/default.nix
2021-07-21 13:32:17 +02:00

24 lines
710 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytest-cov }:
buildPythonPackage rec {
pname = "property-manager";
version = "3.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-property-manager";
rev = version;
sha256 = "1v7hjm7qxpgk92i477fjhpcnjgp072xgr8jrgmbrxfbsv4cvl486";
};
propagatedBuildInputs = [ coloredlogs humanfriendly verboselogs ];
checkInputs = [ 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 ];
};
}