at release-16.03-start 25 lines 668 B view raw
1{ lib, buildPythonApplication, pythonPackages, fetchurl }: 2 3buildPythonApplication rec { 4 name = "cli53-${version}"; 5 namePrefix = ""; # Suppress "python27-" name prefix 6 version = "0.4.4"; 7 8 src = fetchurl { 9 url = "https://pypi.python.org/packages/source/c/cli53/${name}.tar.gz"; 10 sha256 = "0s9jzigq6a16m2c3qklssx2lz16cf13g5zh80vh24kxazaxqzbig"; 11 }; 12 13 propagatedBuildInputs = with pythonPackages; [ 14 argparse 15 boto 16 dns 17 ]; 18 19 meta = { 20 description = "CLI tool for the Amazon Route 53 DNS service"; 21 homepage = https://github.com/barnybug/cli53; 22 license = lib.licenses.mit; 23 maintainers = with lib.maintainers; [ benley ]; 24 }; 25}