jc 1.22.5 -> 1.23.0 https://github.com/kellyjonbrazil/jc/releases attrpath: jc Checking auto update branch... No auto update branch exists Old version 1.22.5" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , ruamel-yaml , xmltodict , pygments , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "jc"; version = "1.23.0"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "kellyjonbrazil"; repo = pname; rev = "refs/tags/v${version}"; sha256 = "sha256-0ZKdySzRHHtDWvSrQ0qJTggu48TyCBVrtEZZkM8HqNQ="; }; propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ]; nativeCheckInputs = [ 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"; }; }