summary refs log tree commit diff
path: root/pkgs/applications/networking/errbot
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-06-05 22:09:07 +0000
committerJonathan Ringer <jonringer117@gmail.com>2022-06-06 11:46:32 -0700
commitb10d49ee09e486adfd264ba7dfc106fab4f0a53e (patch)
tree6750a9cbc0f7aac4e4ed80959924139a9e8debca /pkgs/applications/networking/errbot
parent51fd3fec9e5df5dc528aaf89765d50428695ecdf (diff)
downloadnixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.tar
nixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.tar.gz
nixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.tar.bz2
nixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.tar.lz
nixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.tar.xz
nixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.tar.zst
nixpkgs-b10d49ee09e486adfd264ba7dfc106fab4f0a53e.zip
errbot: use python39
Diffstat (limited to 'pkgs/applications/networking/errbot')
-rw-r--r--pkgs/applications/networking/errbot/default.nix32
1 files changed, 6 insertions, 26 deletions
diff --git a/pkgs/applications/networking/errbot/default.nix b/pkgs/applications/networking/errbot/default.nix
index f4a44275b69..d9f02941b43 100644
--- a/pkgs/applications/networking/errbot/default.nix
+++ b/pkgs/applications/networking/errbot/default.nix
@@ -1,32 +1,12 @@
 { lib
-, ansi
-, buildPythonApplication
-, colorlog
-, daemonize
-, deepmerge
-, dulwich
 , fetchFromGitHub
-, flask
 , glibcLocales
-, hypchat
-, irc
-, jinja2
-, markdown
-, mock
-, pyasn1
-, pyasn1-modules
-, pygments
-, pygments-markdown-lexer
-, pyopenssl
-, pytestCheckHook
-, requests
-, slackclient
-, sleekxmpp
-, telegram
-, webtest
+, python39
 }:
 
-buildPythonApplication rec {
+let
+  python3 = python39;
+in python3.pkgs.buildPythonApplication rec {
   pname = "errbot";
   version = "6.1.7";
 
@@ -41,7 +21,7 @@ buildPythonApplication rec {
 
   buildInputs = [ glibcLocales ];
 
-  propagatedBuildInputs = [
+  propagatedBuildInputs = with python3.pkgs; [
     ansi
     colorlog
     daemonize
@@ -64,7 +44,7 @@ buildPythonApplication rec {
     webtest
   ];
 
-  checkInputs = [
+  checkInputs = with python3.pkgs; [
     mock
     pytestCheckHook
   ];