nixpkgs/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix
Martin Weinelt f71d4911cc python310Packages.poetry-dynamic-versioning: Add setup-hook
to not so dynamically set the package version.
2023-06-15 11:45:12 +02:00

69 lines
1.4 KiB
Nix

{ lib
, buildPythonPackage
, dunamai
, fetchFromGitHub
, jinja2
, markupsafe
, poetry-core
, poetry
, pytestCheckHook
, pythonOlder
, tomlkit
}:
buildPythonPackage rec {
pname = "poetry-dynamic-versioning";
version = "0.21.5";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mtkennerly";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-YFbIQLIbedErdKiPlZf0+6qtZexuJ6Q6pzhy54vSK5Y=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
dunamai
jinja2
markupsafe
tomlkit
];
nativeCheckInputs = [
pytestCheckHook
poetry
];
# virtualenv: error: argument dest: the destination . is not write-able at /
doCheck = false;
disabledTests = [
# these require .git, but leaveDotGit = true doesn't help
"test__get_version__defaults"
"test__get_version__format_jinja"
# these expect to be able to run the poetry cli which fails in test hook
"test_integration"
];
pythonImportsCheck = [
"poetry_dynamic_versioning"
];
setupHook = ./setup-hook.sh;
meta = with lib; {
description = "Plugin for Poetry to enable dynamic versioning based on VCS tags";
homepage = "https://github.com/mtkennerly/poetry-dynamic-versioning";
changelog = "https://github.com/mtkennerly/poetry-dynamic-versioning/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];
};
}