cli53: 0.4.4 -> 0.8.8

This commit is contained in:
Jörg Thalheim 2017-06-18 11:25:13 +01:00
parent 770845d372
commit c25b145815
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

@ -1,21 +1,27 @@
{ lib, python2Packages, fetchurl }: { stdenv, buildGoPackage, fetchFromGitHub }:
python2Packages.buildPythonApplication rec { buildGoPackage rec {
name = "cli53-${version}"; name = "cli53-${version}";
version = "0.4.4"; version = "0.8.8";
src = fetchurl { goPackagePath = "github.com/barnybug/cli53";
url = "mirror://pypi/c/cli53/${name}.tar.gz";
sha256 = "0s9jzigq6a16m2c3qklssx2lz16cf13g5zh80vh24kxazaxqzbig"; src = fetchFromGitHub {
owner = "barnybug";
repo = "cli53";
rev = version;
sha256 = "1hbx64rn25qzp2xlfwv8xaqyfcax9b6pl30j9vciw7cb346i84gc";
}; };
propagatedBuildInputs = with python2Packages; [ buildPhase = ''
argparse pushd go/src/${goPackagePath}/cmd/cli53
boto go get .
dns popd
]; '';
meta = { goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "CLI tool for the Amazon Route 53 DNS service"; description = "CLI tool for the Amazon Route 53 DNS service";
homepage = https://github.com/barnybug/cli53; homepage = https://github.com/barnybug/cli53;
license = lib.licenses.mit; license = lib.licenses.mit;