depot/third_party/nixpkgs/pkgs/development/python-modules/python-ulid/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
973 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";
mainProgram = "ulid";
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 ];
};
}