58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dunamai
|
|
, fetchFromGitHub
|
|
, jinja2
|
|
, markupsafe
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, tomlkit
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "poetry-dynamic-versioning";
|
|
version = "0.16.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mtkennerly";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dLtZSm10OYWLRK4eRo83RczW0zBVAUF0HQXLQbeDJCk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dunamai
|
|
jinja2
|
|
markupsafe
|
|
tomlkit
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# these require .git, but leaveDotGit = true doesn't help
|
|
"test__get_version__defaults"
|
|
"test__get_version__format_jinja"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"poetry_dynamic_versioning"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin for Poetry to enable dynamic versioning based on VCS tags";
|
|
homepage = "https://github.com/mtkennerly/poetry-dynamic-versioning";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
};
|
|
}
|