pydeps 1.12.12 -> 1.12.13 https://github.com/thebjorn/pydeps/releases attrpath: pydeps Checking auto update branch... No auto update branch exists Old version 1.12.12" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , graphviz , stdlib-list , pytestCheckHook , pythonOlder , pyyaml , toml }: buildPythonPackage rec { pname = "pydeps"; version = "1.12.13"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "thebjorn"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-n4FmMqpCqxPmGJokfaxnruG9d5oodv6Yfg80Y1EIr34="; }; buildInputs = [ graphviz ]; propagatedBuildInputs = [ graphviz stdlib-list ]; nativeCheckInputs = [ pytestCheckHook pyyaml toml ]; postPatch = '' # Path is hard-coded substituteInPlace pydeps/dot.py \ --replace "dot -Gstart=1" "${lib.makeBinPath [ graphviz ]}/dot -Gstart=1" ''; disabledTests = [ # Would require to have additional modules available "test_find_package_names" ]; pythonImportsCheck = [ "pydeps" ]; meta = with lib; { description = "Python module dependency visualization"; homepage = "https://github.com/thebjorn/pydeps"; changelog = "https://github.com/thebjorn/pydeps/releases/tag/v${version}"; license = licenses.bsd2; maintainers = with maintainers; [ fab ]; }; }