a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
33 lines
663 B
Nix
33 lines
663 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nanoid";
|
|
version = "2.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WoDK1enG6a46Qfovs0rhiffLQgsqXY+CvZ0jRm5O+mg=";
|
|
};
|
|
|
|
doCheck = false; # tests not in sdist, git not tagged
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"nanoid"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A tiny, secure, URL-friendly, unique string ID generator for Python";
|
|
homepage = "https://github.com/puyuan/py-nanoid";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|