nixpkgs/pkgs/development/python-modules/awesomeversion/default.nix

48 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
poetry-core,
pytest-snapshot,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "awesomeversion";
version = "24.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ludeeus";
repo = "awesomeversion";
rev = "refs/tags/${version}";
hash = "sha256-lpG42Be0MVinWX5MyDvBPdoZFx66l6tpUxpAJRqEf88=";
};
postPatch = ''
# Upstream doesn't set a version
substituteInPlace pyproject.toml \
--replace-fail 'version = "0"' 'version = "${version}"'
'';
nativeBuildInputs = [ poetry-core ];
pythonImportsCheck = [ "awesomeversion" ];
nativeCheckInputs = [
pytest-snapshot
pytestCheckHook
];
meta = with lib; {
description = "Python module to deal with versions";
homepage = "https://github.com/ludeeus/awesomeversion";
changelog = "https://github.com/ludeeus/awesomeversion/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}