diff --git a/nix/pkgs/django-allauth.nix b/nix/pkgs/django-allauth.nix index 7d85e0cd3e..0a1b9893f2 100644 --- a/nix/pkgs/django-allauth.nix +++ b/nix/pkgs/django-allauth.nix @@ -1,4 +1,4 @@ -{ stdenv, buildPythonPackage, fetchFromGitHub, requests, requests_oauthlib +{ lib, buildPythonPackage, fetchFromGitHub, requests, requests_oauthlib , django, python3-openid, mock, coverage, pyjwt }: buildPythonPackage rec { @@ -23,7 +23,7 @@ buildPythonPackage rec { coverage run manage.py test allauth ''; - meta = with stdenv.lib; { + meta = with lib; { description = "Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication"; homepage = "https://www.intenct.nl/projects/django-allauth"; license = licenses.mit; diff --git a/nix/pkgs/django-tailwind.nix b/nix/pkgs/django-tailwind.nix index 2a22d8ac43..6186df9db8 100644 --- a/nix/pkgs/django-tailwind.nix +++ b/nix/pkgs/django-tailwind.nix @@ -1,4 +1,4 @@ -{ stdenv, buildPythonPackage, fetchPypi, django }: +{ lib, buildPythonPackage, fetchPypi, django }: buildPythonPackage rec { pname = "django-tailwind"; @@ -13,7 +13,7 @@ buildPythonPackage rec { doCheck = false; - meta = with stdenv.lib; { + meta = with lib; { description = "Integration of Tailwind CSS with Django"; homepage = "https://github.com/timonweb/django-tailwind"; license = licenses.mit; diff --git a/nix/pkgs/hg-git.nix b/nix/pkgs/hg-git.nix index 882ccd2af8..5b4700ad94 100644 --- a/nix/pkgs/hg-git.nix +++ b/nix/pkgs/hg-git.nix @@ -18,7 +18,7 @@ with pkgs.python3Packages; propagatedBuildInputs = [ dulwich ]; - meta = with stdenv.lib; { + meta = with lib; { description = "Push and pull from a Git server using Mercurial"; homepage = "http://hg-git.github.com/"; license = licenses.gpl2; diff --git a/nix/pkgs/intermec-cups-driver.nix b/nix/pkgs/intermec-cups-driver.nix index cbf05992e8..15794375a5 100644 --- a/nix/pkgs/intermec-cups-driver.nix +++ b/nix/pkgs/intermec-cups-driver.nix @@ -3,6 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 { stdenv +, lib , fetchFromGitHub , autoreconfHook , makeWrapper @@ -43,7 +44,7 @@ stdenv.mkDerivation rec { --replace pbmtodp "$out/bin/pbmtodp" wrapProgram $out/bin/intermec-dp-drv \ - --prefix PATH ":" ${stdenv.lib.makeBinPath [ + --prefix PATH ":" ${lib.makeBinPath [ # cat cp cut head coreutils diff --git a/nix/pkgs/pomerium/default.nix b/nix/pkgs/pomerium/default.nix index d4e303eb52..87045d8490 100644 --- a/nix/pkgs/pomerium/default.nix +++ b/nix/pkgs/pomerium/default.nix @@ -61,7 +61,7 @@ buildGoModule rec { zip --adjust-sfx $out/bin/pomerium ''; - meta = with stdenv.lib; { + meta = with lib; { homepage = "https://pomerium.io"; description = "Authenticating reverse proxy"; license = licenses.asl20; diff --git a/nix/pkgs/python-emv.nix b/nix/pkgs/python-emv.nix index f1bc02ac22..8d06d12510 100644 --- a/nix/pkgs/python-emv.nix +++ b/nix/pkgs/python-emv.nix @@ -30,7 +30,7 @@ buildPythonPackage rec { substituteInPlace setup.py --replace '"argparse",' "" ''; - meta = with stdenv.lib; { + meta = with lib; { homepage = "https://github.com/russss/python-emv"; description = "A Python implementation of the EMV smartcard protocol, used for chip-and-PIN payments"; license = licenses.mit;