12 buildPythonPackage rec {
13 pname = "pipenv-poetry-migrate";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "pipenv-poetry-migrate";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-6K8rTfASpK7OvBwUy40X6xzgpfWL7lIJvpfRiGfBK6U=";
30 propagatedBuildInputs = [
31 setuptools # for pkg_resources
41 description = "This is simple migration script, migrate pipenv to poetry";
42 mainProgram = "pipenv-poetry-migrate";
43 homepage = "https://github.com/yhino/pipenv-poetry-migrate";
44 changelog = "https://github.com/yhino/pipenv-poetry-migrate/blob/v${version}/CHANGELOG.md";
45 license = licenses.asl20;
46 maintainers = with maintainers; [ gador ];