Unverified Commit 3b0f187d authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

sqlite3-to-mysql: 2.4.2 -> 2.4.5 (#443202)

parents 78c0e073 709e9c4d
Loading
Loading
Loading
Loading
+21 −19
Original line number Diff line number Diff line
@@ -10,21 +10,23 @@

python3Packages.buildPythonApplication rec {
  pname = "sqlite3-to-mysql";
  version = "2.4.2";
  version = "2.4.5";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "techouse";
    repo = "sqlite3-to-mysql";
    tag = "v${version}";
    hash = "sha256-wyUJW7G92O3jnwSL5zFy/k/jI6c1H23xYcq7S8wAmsc=";
    hash = "sha256-oJQR54g6TAf1jZOa2RXJxmBVbC65nmb2KRQpgppK6us=";
  };

  build-system = with python3Packages; [
    hatchling
  ];

  dependencies = with python3Packages; [
  dependencies =
    with python3Packages;
    [
      click
      mysql-connector
      pytimeparse2
@@ -39,8 +41,8 @@ python3Packages.buildPythonApplication rec {
      packaging
      mysql80
      python-dateutil
    types-python-dateutil
  ];
    ]
    ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ];

  pythonRelaxDeps = [
    "mysql-connector-python"