Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nanoid / default.nix
blob5054756a30923156ecaf99bf8241035632ba2efe
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "nanoid";
9   version = "2.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-WoDK1enG6a46Qfovs0rhiffLQgsqXY+CvZ0jRm5O+mg=";
15   };
17   doCheck = false; # tests not in sdist, git not tagged
19   nativeCheckInputs = [
20     pytestCheckHook
21   ];
23   pythonImportsCheck = [
24     "nanoid"
25   ];
27   meta = with lib; {
28     description = "A tiny, secure, URL-friendly, unique string ID generator for Python";
29     homepage = "https://github.com/puyuan/py-nanoid";
30     license = licenses.mit;
31     maintainers = with maintainers; [ ];
32   };