summary refs log tree commit diff
path: root/pkgs/development/python-modules/matrix-client
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-08-25 12:50:41 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-08-25 12:50:41 +0100
commitb854e83183ab92e05e8697f2f94d10aa60c59492 (patch)
tree25bed5ddf0052f172b50542d733fc4aedc79e069 /pkgs/development/python-modules/matrix-client
parent49ab1dcc6984d27d64694ff61821fff08d52f931 (diff)
downloadnixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.tar
nixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.tar.gz
nixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.tar.bz2
nixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.tar.lz
nixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.tar.xz
nixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.tar.zst
nixpkgs-b854e83183ab92e05e8697f2f94d10aa60c59492.zip
pythonPackages.matrix-client: don't pass pythonPackages
Diffstat (limited to 'pkgs/development/python-modules/matrix-client')
-rw-r--r--pkgs/development/python-modules/matrix-client/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/matrix-client/default.nix b/pkgs/development/python-modules/matrix-client/default.nix
index d0bbef8a78f..20af252f58f 100644
--- a/pkgs/development/python-modules/matrix-client/default.nix
+++ b/pkgs/development/python-modules/matrix-client/default.nix
@@ -1,7 +1,8 @@
 { stdenv
 , buildPythonPackage
 , fetchPypi
-, pythonPackages
+, requests
+, tox, pytest, flake8, responses
 }:
 
 buildPythonPackage rec {
@@ -14,9 +15,9 @@ buildPythonPackage rec {
     sha256 = "15kx5px26hwr0sxpyjk4w61fjnabg1b57hwys1nyarc0jx4qjhiq";
   };
 
-  checkInputs = with pythonPackages; [ tox pytest flake8 responses ];
+  checkInputs = [ tox pytest flake8 responses ];
 
-  propagatedBuildInputs = with pythonPackages; [ requests ];
+  propagatedBuildInputs = [ requests ];
 
   checkPhase = ''
     pytest