nox: remove pythonPackages references

This commit is contained in:
rnhmjoj 2018-06-03 11:03:37 +02:00
parent f428ac60eb
commit 0683a72e35
No known key found for this signature in database
GPG Key ID: 91BE884FBA4B591A
2 changed files with 5 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{ lib, pythonPackages, fetchurl, git }: { lib, python3Packages, fetchurl, git }:
pythonPackages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
name = "nox-${version}"; name = "nox-${version}";
version = "0.0.6"; version = "0.0.6";
namePrefix = ""; namePrefix = "";
@ -12,9 +12,9 @@ pythonPackages.buildPythonApplication rec {
patches = [ ./nox-review-wip.patch ]; patches = [ ./nox-review-wip.patch ];
buildInputs = [ pythonPackages.pbr git ]; buildInputs = [ python3Packages.pbr git ];
propagatedBuildInputs = with pythonPackages; [ propagatedBuildInputs = with python3Packages; [
dogpile_cache dogpile_cache
click click
requests requests

View File

@ -4222,9 +4222,7 @@ with pkgs;
notify-osd = callPackage ../applications/misc/notify-osd { }; notify-osd = callPackage ../applications/misc/notify-osd { };
nox = callPackage ../tools/package-management/nox { nox = callPackage ../tools/package-management/nox { };
pythonPackages = python3Packages;
};
nq = callPackage ../tools/system/nq { }; nq = callPackage ../tools/system/nq { };