mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03: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}";
|
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
|
||||||
|
@ -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 { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user