59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, dunamai
|
||
|
, fetchFromGitHub
|
||
|
, jinja2
|
||
|
, markupsafe
|
||
|
, poetry-core
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, tomlkit
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "poetry-dynamic-versioning";
|
||
|
version = "0.15.0";
|
||
|
format = "pyproject";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "mtkennerly";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-RHCP5SakizURg5MwD96Bxs/NvoTdPSCKWVYt5m4meLA=";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|