blob: de3cdbfaa17b40c81584af5c1f8310d3660f198d (
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
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
hypothesis,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "sqids";
version = "0.5.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-WsCPDFybaBS8Lnx57lkx4ISdJdlcUOQVdxsCKkT1ivk=";
};
build-system = [ setuptools-scm ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "sqids" ];
meta = {
homepage = "https://sqids.org/python";
description = "Library that lets you generate short YouTube-looking IDs from numbers";
license = with lib.licenses; mit;
maintainers = with lib.maintainers; [ panicgh ];
};
}
|