Commit 725fae7d authored by Nicolas Benes's avatar Nicolas Benes
Browse files

python3Packages.sqids: 0.3.0 -> 0.4.0

Also do minor cleanup e.g. "doCheck" is implicitly set by default for
Python packages.
parent c679700f
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -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
  ];