mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.matrix-client: don't pass pythonPackages
This commit is contained in:
parent
49ab1dcc69
commit
b854e83183
2 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -12539,7 +12539,7 @@ in {
|
|||
inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
||||
matrix-client = callPackage ../development/python-modules/matrix-client/default.nix { pythonPackages = self; };
|
||||
matrix-client = callPackage ../development/python-modules/matrix-client/default.nix { };
|
||||
|
||||
mccabe = callPackage ../development/python-modules/mccabe { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue