summary refs log tree commit diff
path: root/pkgs/tools/admin/cli53/default.nix
blob: 3248ac63bf79d888f4d93d60d6888142f312c4c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonApplication, pythonPackages, fetchurl }:

buildPythonApplication rec {
  name = "cli53-${version}";
  namePrefix = "";  # Suppress "python27-" name prefix
  version = "0.4.4";

  src = fetchurl {
    url = "https://pypi.python.org/packages/source/c/cli53/${name}.tar.gz";
    sha256 = "0s9jzigq6a16m2c3qklssx2lz16cf13g5zh80vh24kxazaxqzbig";
  };

  propagatedBuildInputs = with pythonPackages; [
    argparse
    boto
    dns
  ];

  meta = {
    description = "CLI tool for the Amazon Route 53 DNS service";
    homepage = https://github.com/barnybug/cli53;
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ benley ];
  };
}