python3Packages.sqids: 0.3.0 -> 0.4.0

Also do minor cleanup e.g. "doCheck" is implicitly set by default for
Python packages.
This commit is contained in:
Nicolas Benes 2023-10-26 22:58:42 +02:00
parent c679700f2c
commit 725fae7dd1

View File

@ -8,22 +8,20 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "sqids"; pname = "sqids";
version = "0.3.0"; version = "0.4.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-qAY41kOp0m+mua/4bvVwuDW5p0EpwY675Ux3W1JsqbE="; hash = "sha256-U9nVpRc9PIM1ZO+bcL3RGIfAdlUMf+uFw/SpPTAjdnA=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
setuptools-scm setuptools-scm
]; ];
doCheck = true;
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
]; ];