13 buildPythonPackage rec {
14 pname = "pipenv-poetry-migrate";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
22 repo = "pipenv-poetry-migrate";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-E93A3EfbCb+oOYB61CGhBLwB5m6pvZaSXt9wdnUBSFQ=";
27 nativeBuildInputs = [ poetry-core ];
29 propagatedBuildInputs = [
30 setuptools # for pkg_resources
35 nativeCheckInputs = [ pytestCheckHook ];
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 ];