lol

pipenv-poetry-migrate: move from python3Packages (#373681)

authored by

OTABI Tomoya and committed by
GitHub
6fefe634 0d52e8bd

+10 -19
+9 -17
pkgs/development/python-modules/pipenv-poetry-migrate/default.nix pkgs/by-name/pi/pipenv-poetry-migrate/package.nix
··· 1 { 2 lib, 3 - buildPythonPackage, 4 fetchFromGitHub, 5 - pytestCheckHook, 6 - pythonOlder, 7 - poetry-core, 8 - tomlkit, 9 - typer, 10 - setuptools, 11 }: 12 13 - buildPythonPackage rec { 14 pname = "pipenv-poetry-migrate"; 15 version = "0.6.0"; 16 - format = "pyproject"; 17 - 18 - disabled = pythonOlder "3.8"; 19 20 src = fetchFromGitHub { 21 owner = "yhino"; ··· 24 hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI="; 25 }; 26 27 - nativeBuildInputs = [ poetry-core ]; 28 29 - propagatedBuildInputs = [ 30 setuptools # for pkg_resources 31 tomlkit 32 typer 33 ]; 34 35 - nativeCheckInputs = [ pytestCheckHook ]; 36 37 - meta = with lib; { 38 description = "This is simple migration script, migrate pipenv to poetry"; 39 mainProgram = "pipenv-poetry-migrate"; 40 homepage = "https://github.com/yhino/pipenv-poetry-migrate"; 41 changelog = "https://github.com/yhino/pipenv-poetry-migrate/blob/v${version}/CHANGELOG.md"; 42 - license = licenses.asl20; 43 - maintainers = with maintainers; [ gador ]; 44 }; 45 }
··· 1 { 2 lib, 3 fetchFromGitHub, 4 + python3Packages, 5 }: 6 7 + python3Packages.buildPythonApplication rec { 8 pname = "pipenv-poetry-migrate"; 9 version = "0.6.0"; 10 + pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "yhino"; ··· 16 hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI="; 17 }; 18 19 + build-system = [ python3Packages.poetry-core ]; 20 21 + dependencies = with python3Packages; [ 22 setuptools # for pkg_resources 23 tomlkit 24 typer 25 ]; 26 27 + nativeCheckInputs = [ python3Packages.pytestCheckHook ]; 28 29 + meta = { 30 description = "This is simple migration script, migrate pipenv to poetry"; 31 mainProgram = "pipenv-poetry-migrate"; 32 homepage = "https://github.com/yhino/pipenv-poetry-migrate"; 33 changelog = "https://github.com/yhino/pipenv-poetry-migrate/blob/v${version}/CHANGELOG.md"; 34 + license = lib.licenses.asl20; 35 + maintainers = with lib.maintainers; [ gador ]; 36 }; 37 }
+1
pkgs/top-level/python-aliases.nix
··· 433 pdfx = throw "pdfx has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04 434 pep257 = pydocstyle; # added 2022-04-12 435 pillow-simd = throw "pillow-simd has been removed for lagging behind pillow upstream, which exposes it to various security issues."; # Added 2024-10-24 436 pixelmatch = "pixelmatch has been removed as it was unmaintained"; # Added 2024-08-18 437 pkutils = throw "pkutils was removed as it was unused and is not applicable to modern Python build tools"; # added 2024-07-28 438 poetry = throw "poetry was promoted to a top-level attribute, use poetry-core to build Python packages"; # added 2023-01-09
··· 433 pdfx = throw "pdfx has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04 434 pep257 = pydocstyle; # added 2022-04-12 435 pillow-simd = throw "pillow-simd has been removed for lagging behind pillow upstream, which exposes it to various security issues."; # Added 2024-10-24 436 + pipenv-poetry-migrate = throw "pipenv-poetry-migrate was promoted to a top-level attribute"; # added 2025-01-14 437 pixelmatch = "pixelmatch has been removed as it was unmaintained"; # Added 2024-08-18 438 pkutils = throw "pkutils was removed as it was unused and is not applicable to modern Python build tools"; # added 2024-07-28 439 poetry = throw "poetry was promoted to a top-level attribute, use poetry-core to build Python packages"; # added 2023-01-09
-2
pkgs/top-level/python-packages.nix
··· 10461 10462 pipe = callPackage ../development/python-modules/pipe { }; 10463 10464 - pipenv-poetry-migrate = callPackage ../development/python-modules/pipenv-poetry-migrate { }; 10465 - 10466 piper-phonemize = callPackage ../development/python-modules/piper-phonemize { 10467 onnxruntime-native = pkgs.onnxruntime; 10468 piper-phonemize-native = pkgs.piper-phonemize;
··· 10461 10462 pipe = callPackage ../development/python-modules/pipe { }; 10463 10464 piper-phonemize = callPackage ../development/python-modules/piper-phonemize { 10465 onnxruntime-native = pkgs.onnxruntime; 10466 piper-phonemize-native = pkgs.piper-phonemize;