python.pkgs.area53: add meta

This commit is contained in:
Robert Schütz 2018-08-03 14:34:41 +02:00
parent c2cf345b4c
commit fd08f993f3

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, boto }: , boto }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,4 +14,10 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
propagatedBuildInputs = [ boto ]; propagatedBuildInputs = [ boto ];
meta = with lib; {
description = "Python Interface to Route53";
homepage = https://github.com/mariusv/Area53;
license = licenses.unfree; # unspecified
};
} }