1{ lib, buildPythonPackage, fetchPypi
2, boto }:
3
4buildPythonPackage rec {
5 pname = "Area53";
6 version = "0.94";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0v9b7f8b6v21y410anx5sr52k2ac8jrzdf19q6m6p0zsdsf9vr42";
11 };
12
13 # error: invalid command 'test'
14 doCheck = false;
15
16 propagatedBuildInputs = [ boto ];
17
18 meta = with lib; {
19 description = "Python Interface to Route53";
20 homepage = https://github.com/mariusv/Area53;
21 license = licenses.unfree; # unspecified
22 };
23}