1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

python3Packages.jsonrpc-websocket: Fix build

This commit is contained in:
Elis Hirwing 2019-12-07 09:50:56 +01:00
parent 41beae8a9d
commit 7cf2bcccb2
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F

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