From 7cf2bcccb25cbbf98e12ab71f0a38535421872db Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Sat, 7 Dec 2019 09:50:56 +0100 Subject: [PATCH] python3Packages.jsonrpc-websocket: Fix build --- pkgs/development/python-modules/jsonrpc-websocket/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/jsonrpc-websocket/default.nix b/pkgs/development/python-modules/jsonrpc-websocket/default.nix index 8361e37239e8..c0c2fe2a8ee5 100644 --- a/pkgs/development/python-modules/jsonrpc-websocket/default.nix +++ b/pkgs/development/python-modules/jsonrpc-websocket/default.nix @@ -1,5 +1,5 @@ { stdenv, buildPythonPackage, fetchPypi -, aiohttp, jsonrpc-base }: +, aiohttp, jsonrpc-base, pep8 }: buildPythonPackage rec { pname = "jsonrpc-websocket"; @@ -10,6 +10,8 @@ buildPythonPackage rec { sha256 = "f1aaca95db795d6a9f7bba52ff83c7fd4139050d0df93ee3a5a448adcfa0c0ac"; }; + nativeBuildInputs = [ pep8 ]; + propagatedBuildInputs = [ aiohttp jsonrpc-base ]; meta = with stdenv.lib; {