pipenv-poetry-migrate: move from python3Packages

This commit is contained in:
natsukium
2025-01-14 18:34:52 +09:00
parent 9242a724f8
commit e55003d29d
3 changed files with 6 additions and 15 deletions
@@ -1,22 +1,14 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
poetry-core,
tomlkit,
typer,
setuptools,
python3Packages,
}:
buildPythonPackage rec {
python3Packages.buildPythonApplication rec {
pname = "pipenv-poetry-migrate";
version = "0.6.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "yhino";
repo = "pipenv-poetry-migrate";
@@ -24,15 +16,15 @@ buildPythonPackage rec {
hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI=";
};
nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [ python3Packages.poetry-core ];
propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
setuptools # for pkg_resources
tomlkit
typer
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
meta = with lib; {
description = "This is simple migration script, migrate pipenv to poetry";
+1
View File
@@ -432,6 +432,7 @@ mapAliases ({
pdfx = throw "pdfx has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04
pep257 = pydocstyle; # added 2022-04-12
pillow-simd = throw "pillow-simd has been removed for lagging behind pillow upstream, which exposes it to various security issues."; # Added 2024-10-24
pipenv-poetry-migrate = throw "pipenv-poetry-migrate was promoted to a top-level attribute"; # added 2025-01-14
pixelmatch = "pixelmatch has been removed as it was unmaintained"; # Added 2024-08-18
pkutils = throw "pkutils was removed as it was unused and is not applicable to modern Python build tools"; # added 2024-07-28
poetry = throw "poetry was promoted to a top-level attribute, use poetry-core to build Python packages"; # added 2023-01-09
-2
View File
@@ -10413,8 +10413,6 @@ self: super: with self; {
pipe = callPackage ../development/python-modules/pipe { };
pipenv-poetry-migrate = callPackage ../development/python-modules/pipenv-poetry-migrate { };
piper-phonemize = callPackage ../development/python-modules/piper-phonemize {
onnxruntime-native = pkgs.onnxruntime;
piper-phonemize-native = pkgs.piper-phonemize;