Martin Weinelt 8056f9250c
treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

47 lines
936 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, hatch-fancy-pypi-readme
, hatch-vcs
, hatchling
, freezegun
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "python-ulid";
version = "2.2.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mdomke";
repo = "python-ulid";
rev = "refs/tags/${version}";
hash = "sha256-d5jCPxWUOfw/OCtbA9Db9+s1D5DAdL+vbPR8zavgbbo=";
};
nativeBuildInputs = [
hatch-fancy-pypi-readme
hatch-vcs
hatchling
];
nativeCheckInputs = [
freezegun
pytestCheckHook
];
pythonImportsCheck = [ "ulid" ];
meta = with lib; {
description = "ULID implementation for Python";
homepage = "https://github.com/mdomke/python-ulid";
changelog = "https://github.com/mdomke/python-ulid/blob/${src.rev}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ natsukium ];
};
}