blob: fbfdeeaedbe8091acd74f8f13a62fa8bdb6035de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "shortuuid";
version = "1.0.13";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-O7nPB/YGJgWEsd9GOZwLh92Edz57JZErfjkeMHl8XnI=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "shortuuid" ];
meta = {
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 = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ zagy ];
};
}
|