diff --git a/pkgs/development/python-modules/versioneer/default.nix b/pkgs/development/python-modules/versioneer/default.nix index 131bf9d7f425..5976a307bf0a 100644 --- a/pkgs/development/python-modules/versioneer/default.nix +++ b/pkgs/development/python-modules/versioneer/default.nix @@ -1,23 +1,32 @@ { lib , buildPythonPackage -, fetchPypi +, fetchFromGitHub , pythonOlder +, setuptools +, tomli }: buildPythonPackage rec { pname = "versioneer"; - version = "0.26"; - format = "setuptools"; + version = "0.28"; + format = "pyproject"; disabled = pythonOlder "3.7"; - src = fetchPypi { - inherit pname version; - hash = "sha256-hPxymqKW0dJmRaj2LxeAGYhf9vmhBzsppKIoJwrFJXs="; + src = fetchFromGitHub { + owner = "python-versioneer"; + repo = "python-versioneer"; + rev = "refs/tags/${version}"; + hash = "sha256-Jy0c1I3kLgJAeGWzcgl5qVAWesf4EXaMIOW03B+1yWE="; }; - # Couldn't get tests to work because, for instance, they used virtualenv and - # pip. + nativeBuildInputs = [ + setuptools + ] ++ lib.optionals (pythonOlder "3.11") [ + tomli + ]; + + # Couldn't get tests to work because, for instance, they used virtualenv and pip doCheck = false; pythonImportsCheck = [ @@ -27,6 +36,7 @@ buildPythonPackage rec { meta = with lib; { description = "Version-string management for VCS-controlled trees"; homepage = "https://github.com/warner/python-versioneer"; + changelog = "https://github.com/python-versioneer/python-versioneer/blob/${version}/NEWS.md"; license = licenses.publicDomain; maintainers = with maintainers; [ jluttine ]; };