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, buildPythonPackage }:
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "phonenumbers";
@@ -9,10 +9,10 @@ buildPythonPackage rec {
sha256 = "96d02120a3481e22d8a8eb5e4595ceec1930855749f6e4a06ef931881f59f562";
};
meta = {
meta = with lib; {
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers";
homepage = "https://github.com/daviddrysdale/python-phonenumbers";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ fadenb ];
license = licenses.asl20;
maintainers = with maintainers; [ fadenb ];
};
}