python3Packages.sqids: init at 0.3.0

Sqids was formerly known as Hashids.

The old https://hashids.org now redirects to https://sqids.org/?hashids
master
Nicolas Benes 2023-09-26 00:21:27 +02:00
parent a0d332ad7f
commit 6d4baca8df
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools-scm
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "sqids";
version = "0.3.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-qAY41kOp0m+mua/4bvVwuDW5p0EpwY675Ux3W1JsqbE=";
};
nativeBuildInputs = [
setuptools-scm
];
doCheck = true;
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "sqids" ];
meta = with lib; {
homepage = "https://sqids.org/python";
description = "A library that lets you generate short YouTube-looking IDs from numbers";
license = with licenses; mit;
maintainers = with maintainers; [ panicgh ];
};
}

View File

@ -12383,6 +12383,8 @@ self: super: with self; {
spyse-python = callPackage ../development/python-modules/spyse-python { };
sqids = callPackage ../development/python-modules/sqids { };
sqlalchemy = callPackage ../development/python-modules/sqlalchemy { };
sqlalchemy-citext = callPackage ../development/python-modules/sqlalchemy-citext { };