# Pastebin ewY0APU3 { fetchurl, stdenv, python3Packages }: python3Packages.buildPythonApplication rec { version = "0.5.2"; name = "dcos-cli-${version}"; format = "setuptools"; src = fetchurl { url = "https://github.com/dcos/dcos-cli/archive/${version}.tar.gz"; sha256 = "0fqkzhp8vrssnqh8qrn4w06gk2jnp1apy8zqlj8daj94qb5ng76y"; }; preBuildPhase = '' cd cli make env ''; meta = { homepage = https://github.com/dcos/dcos-cli; license = stdenv.lib.licenses.asl20; description = "DC/OS Command Line Interface"; longDescription = '' The DC/OS Command Line Interface (CLI) is a cross-platform command line utility that provides a user-friendly yet powerful way to manage DC/OS clusters. ''; }; }