Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d55e77b895c7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 96e0c90a64d5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 7, 2019

  1. Copy the full SHA
    7cf2bcc View commit details
  2. Merge pull request #75142 from etu/fix-python-jsonrpc-websocket-build

    python3Packages.jsonrpc-websocket: Fix build
    srhb authored Dec 7, 2019
    Copy the full SHA
    96e0c90 View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/development/python-modules/jsonrpc-websocket/default.nix
Original file line number Diff line number Diff line change
@@ -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; {