lol

nox: remove pythonPackages references

rnhmjoj 0683a72e f428ac60

+5 -7
+4 -4
pkgs/tools/package-management/nox/default.nix
··· 1 - { lib, pythonPackages, fetchurl, git }: 1 + { lib, python3Packages, fetchurl, git }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 name = "nox-${version}"; 5 5 version = "0.0.6"; 6 6 namePrefix = ""; ··· 12 12 13 13 patches = [ ./nox-review-wip.patch ]; 14 14 15 - buildInputs = [ pythonPackages.pbr git ]; 15 + buildInputs = [ python3Packages.pbr git ]; 16 16 17 - propagatedBuildInputs = with pythonPackages; [ 17 + propagatedBuildInputs = with python3Packages; [ 18 18 dogpile_cache 19 19 click 20 20 requests
+1 -3
pkgs/top-level/all-packages.nix
··· 4222 4222 4223 4223 notify-osd = callPackage ../applications/misc/notify-osd { }; 4224 4224 4225 - nox = callPackage ../tools/package-management/nox { 4226 - pythonPackages = python3Packages; 4227 - }; 4225 + nox = callPackage ../tools/package-management/nox { }; 4228 4226 4229 4227 nq = callPackage ../tools/system/nq { }; 4230 4228