mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #12485 from mogorman/sopel_6.2.1
sopel: 6.1.1 -> 6.2.1
This commit is contained in:
commit
b076c78005
1 changed files with 6 additions and 2 deletions
|
@ -18416,17 +18416,21 @@ in modules // {
|
||||||
};
|
};
|
||||||
|
|
||||||
sopel = buildPythonPackage rec {
|
sopel = buildPythonPackage rec {
|
||||||
name = "sopel-6.1.1";
|
name = "sopel-6.2.1";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/s/sopel/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/s/sopel/${name}.tar.gz";
|
||||||
sha256 = "0nr2a88bkxg2593dd947qkh96g8j32q7pl7x9zvx4158h4bgx99y";
|
sha256 = "06m5clmg9x0bsnhvl5d75mskwqnxvkdd00p0dqnpwip9vmq6n8cz";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = with self; [ pytest ];
|
||||||
propagatedBuildInputs = with self; [ praw xmltodict pytz pyenchant pygeoip ];
|
propagatedBuildInputs = with self; [ praw xmltodict pytz pyenchant pygeoip ];
|
||||||
|
|
||||||
disabled = isPyPy || isPy26 || isPy27;
|
disabled = isPyPy || isPy26 || isPy27;
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} test/*.py
|
||||||
|
'';
|
||||||
meta = {
|
meta = {
|
||||||
description = "Simple and extensible IRC bot";
|
description = "Simple and extensible IRC bot";
|
||||||
homepage = "http://sopel.chat";
|
homepage = "http://sopel.chat";
|
||||||
|
|
Loading…
Reference in a new issue