mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python.pkgs.area53: add meta
This commit is contained in:
parent
c2cf345b4c
commit
fd08f993f3
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue