migrate-to-uv: 0.11.1 -> 0.12.0

and change repo owner
This commit is contained in:
Malik
2026-04-16 08:38:23 +02:00
parent f20cc522f8
commit 4d5beb4897
+6 -6
View File
@@ -11,19 +11,19 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "migrate-to-uv";
version = "0.11.1";
version = "0.12.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mkniewallner";
owner = "osprey-oss";
repo = "migrate-to-uv";
tag = finalAttrs.version;
hash = "sha256-gKiLGuHlUtSFdZCZZIxK7V6apvHMJ7sBZZo0auK4w2s=";
hash = "sha256-+UXPgFYgTlLmUYpE2aWsO2OdelP9dCZsB3cWjG4negA=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs) src pname version;
hash = "sha256-CZEZ1zLXAerUPgKRmzkN4Q3v/tNDI438V0yfYYZK+pQ=";
hash = "sha256-evsc5uOZnN6+tRXmN1SQD5Iqnm4Y+TjmBzWaGQQj2UQ=";
};
build-system = [
@@ -39,8 +39,8 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
meta = {
description = "Migrate a project from Poetry/Pipenv/pip-tools/pip to uv package manager";
homepage = "https://mkniewallner.github.io/migrate-to-uv/";
changelog = "https://github.com/mkniewallner/migrate-to-uv/blob/${finalAttrs.src.tag}/CHANGELOG.md";
homepage = "https://osprey-oss.github.io/migrate-to-uv/";
changelog = "https://osprey-oss.github.io/migrate-to-uv/CHANGELOG/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ malik ];
mainProgram = "migrate-to-uv";