Unverified Commit c94b3f2d authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

Merge pull request #228680 from LeSuisse/sqlparse-0.4.4

python3Packages.sqlparse: 0.4.3 -> 0.4.4
parents 0f2bdfe1 fc0e13b4
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, installShellFiles
, pytestCheckHook
, isPy3k
@@ -8,16 +9,18 @@

buildPythonPackage rec {
  pname = "sqlparse";
  version = "0.4.3";
  version = "0.4.4";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-acqASEa7EU0uw4DkNgqKNA24PwzPOvzusUBN8Cj1cmg=";
    hash = "sha256-1EYYPoS4NJ+jBh8P5/BsqUumW0JpRv/r5uPoKVMyQgw=";
  };

  nativeBuildInputs = [ installShellFiles ];
  format = "pyproject";

  nativeBuildInputs = [ flit-core installShellFiles ];

  nativeCheckInputs = [ pytestCheckHook ];