depot/third_party/nixpkgs/pkgs/development/python-modules/awesomeversion/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

47 lines
1 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 ];
};
}