packet-python: init at 1.31

This commit is contained in:
dipinhora 2016-10-10 14:37:01 -04:00
parent da9c6a7744
commit 67d22db807
2 changed files with 19 additions and 0 deletions

View file

@ -117,6 +117,7 @@
dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>";
dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>";
dgonyeo = "Derek Gonyeo <derek@gonyeo.com>";
dipinhora = "Dipin Hora <dipinhora+github@gmail.com>";
dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>";
dochang = "Desmond O. Chang <dochang@gmail.com>";
doublec = "Chris Double <chris.double@double.co.nz>";

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;
};
};
}