Merge pull request #19461 from dipinhora/packet-python

packet-python: init at 1.31
This commit is contained in:
Daiderd Jordan 2016-10-11 23:18:09 +02:00 committed by GitHub
commit 0dd3f7d4e9

View File

@ -30673,4 +30673,22 @@ in modules // {
};
};
packet-python = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "packet-python";
version = "1.31";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/c3/1b/ea71ec9d6eeab92b783d23dd62e71e9296f9699bc7d457450859803929f0/${name}.tar.gz";
sha256 = "1z1zmrajfw01jr3mafimq7dvsb1rs978zln9xfd6fbqkp3vm9hc0";
};
propagatedBuildInputs = with self; [ requests ];
meta = {
description = "A Python client for the Packet API.";
homepage = "https://github.com/packethost/packet-python";
license = licenses.lgpl3;
maintainers = with maintainers; [ dipinhora ];
platforms = platforms.all;
};
};
}