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
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, libxml2, libxslt, python3, qt4 }:
{ lib, stdenv, fetchurl, cmake, libxml2, libxslt, python3, qt4 }:
# This derivation does not provide any Python module and should therefore be called via `all-packages.nix`.
let
@@ -20,11 +20,11 @@ in stdenv.mkDerivation {
nativeBuildInputs = [ cmake pythonEnv ];
buildInputs = [ qt4 libxml2 libxslt ];
meta = {
meta = with lib; {
description = "Eases the development of bindings of Qt-based libraries for high level languages by automating most of the process";
license = stdenv.lib.licenses.gpl2;
license = licenses.gpl2;
homepage = "http://www.pyside.org/docs/apiextractor/";
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
};
}
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, pysideApiextractor, python3, qt4 }:
{ lib, stdenv, fetchurl, cmake, pysideApiextractor, python3, qt4 }:
# This derivation does not provide any Python module and should therefore be called via `all-packages.nix`.
let
@@ -22,11 +22,11 @@ in stdenv.mkDerivation {
nativeBuildInputs = [ cmake pythonEnv ];
buildInputs = [ pysideApiextractor qt4 ];
meta = {
meta = with lib; {
description = "Eases the development of binding generators for C++ and Qt-based libraries by providing a framework to help automating most of the process";
license = stdenv.lib.licenses.gpl2;
license = licenses.gpl2;
homepage = "http://www.pyside.org/docs/generatorrunner/";
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
};
}