sqlite3-to-mysql: 2.1.6 -> 2.1.7

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
Co-authored-by: Nick Cao <nickcao@nichi.co>
This commit is contained in:
Florian Brandes 2024-01-14 20:07:52 +01:00
parent fb6357bd76
commit df47db9a27

View file

@ -9,7 +9,7 @@
python3Packages.buildPythonApplication rec {
pname = "sqlite3-to-mysql";
version = "2.1.6";
version = "2.1.7";
format = "pyproject";
disabled = python3Packages.pythonOlder "3.8";
@ -18,11 +18,12 @@ python3Packages.buildPythonApplication rec {
owner = "techouse";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-RIe4If7R8snbNN2yIPxAh39EQplVyhMF2c0G06Zipds=";
hash = "sha256-TglHny0HgVth3o73GQYddh9sdyQ0L+4J4dJBAeJToiM=";
};
nativeBuildInputs = with python3Packages; [
hatchling
pythonRelaxDepsHook
];
propagatedBuildInputs = with python3Packages; [
@ -41,6 +42,10 @@ python3Packages.buildPythonApplication rec {
mysql80
];
pythonRelaxDeps = [
"mysql-connector-python"
];
# tests require a mysql server instance
doCheck = false;