08a508da5d
Diff: https://github.com/python-versioneer/python-versioneer/compare/refs/tags/0.27...0.28 Changelog: https://github.com/python-versioneer/python-versioneer/blob/0.28/NEWS.md
43 lines
1,005 B
Nix
43 lines
1,005 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, setuptools
|
|
, tomli
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "versioneer";
|
|
version = "0.28";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-versioneer";
|
|
repo = "python-versioneer";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Jy0c1I3kLgJAeGWzcgl5qVAWesf4EXaMIOW03B+1yWE=";
|
|
};
|
|
|
|
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 = [
|
|
"versioneer"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|