core/pkgs/by-name/py/python/python-modules/calver/default.nix
2024-05-13 11:34:52 -04:00

49 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, pretend
, pytestCheckHook
}:
let
self = buildPythonPackage rec {
pname = "calver";
version = "2022.06.26";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "di";
repo = "calver";
rev = version;
hash = "sha256-YaXTkeUazwzghCX96Wfx39hGvukWKtHMLLeyF9OeiZI=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "version=calver_version(True)" 'version="${version}"'
'';
doCheck = false; # avoid infinite recursion with hatchling
nativeCheckInputs = [
pretend
pytestCheckHook
];
pythonImportsCheck = [ "calver" ];
passthru.tests.calver = self.overridePythonAttrs { doCheck = true; };
meta = {
description = "Setuptools extension for CalVer package versions";
homepage = "https://github.com/di/calver";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
};
in
self