nixpkgs/pkgs/development/python-modules/awesomeversion/default.nix
2024-02-21 11:07:36 +01:00

51 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, poetry-core
, pytest-snapshot
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "awesomeversion";
version = "24.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ludeeus";
repo = "awesomeversion";
rev = "refs/tags/${version}";
hash = "sha256-bpLtHhpWc1VweVl5G8mM473Js3bXT11N3Zc0jiVqq5c=";
};
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 ];
};
}