Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 708 B view raw
1{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytestcov }: 2 3buildPythonPackage rec { 4 pname = "property-manager"; 5 version = "2.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "xolox"; 9 repo = "python-property-manager"; 10 rev = version; 11 sha256 = "0s4nwipxd8c2vp4rd8mxrj8wbycniz5ki5n177d0dbrnll5amcz0"; 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}