Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "Autologging"; 5 version = "1.3.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "117659584d8aab8cf62046f682f8e57b54d958b8571c737fa8bf15c32937fbb6"; 10 extension = "zip"; 11 }; 12 13 meta = with lib; { 14 homepage = "https://ninthtest.info/python-autologging/"; 15 description = "Easier logging and tracing for Python classes"; 16 license = licenses.mit; 17 maintainers = with maintainers; [ twey ]; 18 }; 19}