pkgs/development/python-modules: stdenv.lib -> lib

This commit is contained in:
Pavol Rusnak
2021-01-24 01:29:22 +01:00
parent 2f34b4b883
commit a4bbfba80d
211 changed files with 525 additions and 546 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
{ lib, fetchPypi, isPy3k, buildPythonPackage }:
buildPythonPackage rec {
pname = "pyobjc";
@@ -13,10 +13,10 @@ buildPythonPackage rec {
sha256 = "2b6c3e98f1408564ace1df36927154d7827c8e2f382386ab5d2db95c891e35a0";
};
meta = {
meta = with lib; {
description = "A bridge between the Python and Objective-C programming languages";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ ];
license = licenses.mit;
maintainers = with maintainers; [ ];
homepage = "https://pythonhosted.org/pyobjc/";
};
}