mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
errbot: use python39
This commit is contained in:
parent
51fd3fec9e
commit
b10d49ee09
@ -1,32 +1,12 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, ansi
|
|
||||||
, buildPythonApplication
|
|
||||||
, colorlog
|
|
||||||
, daemonize
|
|
||||||
, deepmerge
|
|
||||||
, dulwich
|
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, flask
|
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
, hypchat
|
, python39
|
||||||
, irc
|
|
||||||
, jinja2
|
|
||||||
, markdown
|
|
||||||
, mock
|
|
||||||
, pyasn1
|
|
||||||
, pyasn1-modules
|
|
||||||
, pygments
|
|
||||||
, pygments-markdown-lexer
|
|
||||||
, pyopenssl
|
|
||||||
, pytestCheckHook
|
|
||||||
, requests
|
|
||||||
, slackclient
|
|
||||||
, sleekxmpp
|
|
||||||
, telegram
|
|
||||||
, webtest
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
let
|
||||||
|
python3 = python39;
|
||||||
|
in python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "errbot";
|
pname = "errbot";
|
||||||
version = "6.1.7";
|
version = "6.1.7";
|
||||||
|
|
||||||
@ -41,7 +21,7 @@ buildPythonApplication rec {
|
|||||||
|
|
||||||
buildInputs = [ glibcLocales ];
|
buildInputs = [ glibcLocales ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
ansi
|
ansi
|
||||||
colorlog
|
colorlog
|
||||||
daemonize
|
daemonize
|
||||||
@ -64,7 +44,7 @@ buildPythonApplication rec {
|
|||||||
webtest
|
webtest
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = with python3.pkgs; [
|
||||||
mock
|
mock
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
@ -26079,7 +26079,7 @@ with pkgs;
|
|||||||
|
|
||||||
eq10q = callPackage ../applications/audio/eq10q { };
|
eq10q = callPackage ../applications/audio/eq10q { };
|
||||||
|
|
||||||
errbot = python3Packages.callPackage ../applications/networking/errbot { };
|
errbot = callPackage ../applications/networking/errbot { };
|
||||||
|
|
||||||
espeak-classic = callPackage ../applications/audio/espeak { };
|
espeak-classic = callPackage ../applications/audio/espeak { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user