mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
nox: remove pythonPackages references
This commit is contained in:
parent
f428ac60eb
commit
0683a72e35
@ -1,6 +1,6 @@
|
||||
{ lib, pythonPackages, fetchurl, git }:
|
||||
{ lib, python3Packages, fetchurl, git }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
name = "nox-${version}";
|
||||
version = "0.0.6";
|
||||
namePrefix = "";
|
||||
@ -12,9 +12,9 @@ pythonPackages.buildPythonApplication rec {
|
||||
|
||||
patches = [ ./nox-review-wip.patch ];
|
||||
|
||||
buildInputs = [ pythonPackages.pbr git ];
|
||||
buildInputs = [ python3Packages.pbr git ];
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
dogpile_cache
|
||||
click
|
||||
requests
|
||||
|
@ -4222,9 +4222,7 @@ with pkgs;
|
||||
|
||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||
|
||||
nox = callPackage ../tools/package-management/nox {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
nox = callPackage ../tools/package-management/nox { };
|
||||
|
||||
nq = callPackage ../tools/system/nq { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user