blob: 29720b5dbf3f8c4a7173a980af5d125749206c56 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "rstr";
version = "3.2.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-xKVk1N+0Ry2THRRcQ9HPGteMJFkhQud1W4hmF57qwBI=";
};
pyproject = true;
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ unittestCheckHook ];
meta = {
description = "Python library to generate random strings";
homepage = "https://github.com/leapfrogonline/rstr";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ danc86 ];
};
}
|