2022-12-25T18:07:52 anybadge 1.9.0 -> 1.14.0 https://pypi.org/project/anybadge/ 2022-12-25T18:07:54 attrpath: anybadge 2022-12-25T18:07:54 Checking auto update branch... 2022-12-25T18:07:54 No auto update branch exists 2022-12-25T18:07:55 Old version 1.9.0" not present in master derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage , pytestCheckHook }: buildPythonPackage rec { pname = "anybadge"; version = "1.11.1"; format = "setuptools"; src = fetchFromGitHub { owner = "jongracecox"; repo = pname; rev = "v${version}"; sha256 = "sha256-6br4WUwE1ovAneYUeTHcUN3PH5Wm1rnLYCpXDUshk7Q="; }; # setup.py reads its version from the TRAVIS_TAG environment variable TRAVIS_TAG = "v${version}"; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "anybadge" ]; meta = with lib; { description = "Python tool for generating badges for your projects"; homepage = "https://github.com/jongracecox/anybadge"; license = licenses.mit; maintainers = with maintainers; [ fabiangd ]; }; }