Skip to content

Commit

Permalink
Use with python.pkgs and not python3.pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
doronbehar committed Aug 24, 2019
1 parent 608a33b commit c7d6099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/networking/p2p/stig/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ python.pkgs.buildPythonApplication rec {
--replace "urwidtrees>=1.0.3dev0" "urwidtrees"
'';

with python3.pkgs; buildInputs = [
buildInputs = with python.pkgs; [
urwid
urwidtrees
aiohttp
Expand All @@ -33,7 +33,7 @@ python.pkgs.buildPythonApplication rec {
setproctitle
];

checkInputs = [
checkInputs = with python.pkgs; [
asynctest
pytest
];
Expand Down

0 comments on commit c7d6099

Please sign in to comment.