fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
36 lines
839 B
Nix
36 lines
839 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "shortuuid";
|
|
version = "1.0.13";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-O7nPB/YGJgWEsd9GOZwLh92Edz57JZErfjkeMHl8XnI=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "shortuuid" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to generate concise, unambiguous and URL-safe UUIDs";
|
|
mainProgram = "shortuuid";
|
|
homepage = "https://github.com/stochastic-technologies/shortuuid/";
|
|
changelog = "https://github.com/skorokithakis/shortuuid/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ zagy ];
|
|
};
|
|
}
|