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, buildPythonPackage, fetchPypi, latexcodec, pyyaml }:
{ lib, buildPythonPackage, fetchPypi, latexcodec, pyyaml }:
buildPythonPackage rec {
version = "0.23.0";
@@ -12,9 +12,9 @@ buildPythonPackage rec {
sha256 = "b92be18ccd5e9a37895949dcf359a1f6890246b73646dddf1129178ee12e4bef";
};
meta = {
meta = with lib; {
homepage = "https://pybtex.org/";
description = "A BibTeX-compatible bibliography processor written in Python";
license = stdenv.lib.licenses.mit;
license = licenses.mit;
};
}