052f5aea58
to avoid infinite recursion with hatchling update
48 lines
1 KiB
Nix
48 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
|