python.pkgs: fix various missing lib/stdenv

This commit is contained in:
Frederik Rietdijk 2017-09-05 09:46:30 +02:00
parent 413b54bcef
commit 3771bf74a8
4 changed files with 5 additions and 5 deletions

View file

@ -20,6 +20,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
homepage = "http://www.cherrypy.org";
description = "A pythonic, object-oriented HTTP framework";
license = licenses.mit.bsd3;
license = licenses.bsd3;
};
}

View file

@ -18,6 +18,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Monitor TCP ports for bound or unbound states";
homepage = https://github.com/jaraco/portend;
license = lib.licenses.bsd3;
license = licenses.bsd3;
};
}

View file

@ -15,6 +15,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "A plugin that changes the default look and feel of py.test";
homepage = https://github.com/Frozenball/pytest-sugar;
license = lib.licenses.bsd3;
license = licenses.bsd3;
};
}

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
@ -12,7 +12,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ pytest ];
meta = with stdenv.lib; {
meta = {
description = "Plugin to list Python warnings in pytest report";
homepage = github.com/fschulze/pytest-warnings;
license = lib.licenses.mit;