Loading pkgs/development/python-modules/sqids/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -13197,6 +13197,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 { }; Loading Loading
pkgs/development/python-modules/sqids/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -13197,6 +13197,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 { }; Loading