mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #75142 from etu/fix-python-jsonrpc-websocket-build
python3Packages.jsonrpc-websocket: Fix build
This commit is contained in:
commit
96e0c90a64
1 changed files with 3 additions and 1 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue