nixpkgs/pkgs/development/python-modules/nanoid/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
657 B
Nix
Raw Normal View History

2023-01-03 14:35:25 +00:00
{ 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
checkInputs = [
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; [ ];
};
}