pythonPackages.area53: drop

PyPI package was taken offline.

See https://github.com/bluepines/slick53/issues/5
This commit is contained in:
Mario Rodas
2019-04-24 00:00:00 -05:00
committed by Frederik Rietdijk
parent 8563088e69
commit 053b9da754
2 changed files with 0 additions and 25 deletions

View File

@@ -1,23 +0,0 @@
{ lib, buildPythonPackage, fetchPypi
, boto }:
buildPythonPackage rec {
pname = "Area53";
version = "0.94";
src = fetchPypi {
inherit pname version;
sha256 = "0v9b7f8b6v21y410anx5sr52k2ac8jrzdf19q6m6p0zsdsf9vr42";
};
# error: invalid command 'test'
doCheck = false;
propagatedBuildInputs = [ boto ];
meta = with lib; {
description = "Python Interface to Route53";
homepage = https://github.com/mariusv/Area53;
license = licenses.unfree; # unspecified
};
}