From 3a14a5b37584f1ae418697b933f3d3c48a480fb6 Mon Sep 17 00:00:00 2001 From: Matthew O'Gorman Date: Sat, 16 Jan 2016 20:46:17 -0500 Subject: [PATCH] sopel: init at 6.1.1 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bcf84f13cd80..1ce7f1acb062 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17996,6 +17996,26 @@ in modules // { }; }; + sopel = buildPythonPackage rec { + name = "sopel-6.1.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/s/sopel/${name}.tar.gz"; + sha256 = "0nr2a88bkxg2593dd947qkh96g8j32q7pl7x9zvx4158h4bgx99y"; + }; + + propagatedBuildInputs = with self; [ praw xmltodict pytz pyenchant pygeoip ]; + + disabled = isPyPy || isPy26 || isPy27; + + meta = { + description = "Simple and extensible IRC bot"; + homepage = "http://sopel.chat"; + license = licenses.efl20; + maintainers = with maintainers; [ mog ]; + }; + }; + stevedore = buildPythonPackage rec { name = "stevedore-1.7.0";