Merge pull request #44420 from dotlambda/awslogs-python3
awslogs: use python3Packages
This commit is contained in:
commit
82f80f4cfa
1 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "awslogs-${version}";
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "awslogs";
|
||||
version = "0.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
boto3 termcolor dateutil docutils
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue