2022-12-22T23:16:47 jc 1.20.2 -> 1.22.3 https://pypi.org/project/jc/ 2022-12-22T23:16:50 attrpath: jc 2022-12-22T23:16:50 Checking auto update branch... 2022-12-22T23:16:50 No auto update branch exists 2022-12-22T23:16:51 Old version 1.20.2" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , ruamel-yaml , xmltodict , pygments , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "jc"; version = "1.22.3"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "kellyjonbrazil"; repo = pname; rev = "refs/tags/v${version}"; sha256 = "sha256-JOhsV4NyY5OW4smDEup1i9MTSQzK4Ldut/VybPB9ulc="; }; propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "jc" ]; # tests require timezone to set America/Los_Angeles doCheck = false; meta = with lib; { description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output"; homepage = "https://github.com/kellyjonbrazil/jc"; license = licenses.mit; maintainers = with maintainers; [ atemu ]; changelog = "https://github.com/kellyjonbrazil/jc/blob/v${version}/CHANGELOG"; }; }