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 {
pname = "sqids";
version = "0.3.0";
format = "pyproject";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-qAY41kOp0m+mua/4bvVwuDW5p0EpwY675Ux3W1JsqbE=";
hash = "sha256-U9nVpRc9PIM1ZO+bcL3RGIfAdlUMf+uFw/SpPTAjdnA=";
};
nativeBuildInputs = [
setuptools-scm
];
doCheck = true;
nativeCheckInputs = [
pytestCheckHook
];