Merge pull request #75142 from etu/fix-python-jsonrpc-websocket-build

python3Packages.jsonrpc-websocket: Fix build
This commit is contained in:
Sarah Brofeldt 2019-12-07 11:41:50 +01:00 committed by GitHub
commit 96e0c90a64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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; {