forked from mirrors/nixpkgs
35 lines
857 B
Nix
35 lines
857 B
Nix
|
{ stdenv, buildPythonPackage, fetchFromGitHub, python, mock, boto, pytest }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "amazon_kclpy";
|
||
|
version = "1.5.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "awslabs";
|
||
|
repo = "amazon-kinesis-client-python";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1qg86y9172gm5592ja7lr6w7kfnx668j99bf3ijklpk5yshxwr9m";
|
||
|
};
|
||
|
|
||
|
# argparse is just required for python2.6
|
||
|
prePatch = ''
|
||
|
substituteInPlace setup.py \
|
||
|
--replace "'argparse'," ""
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [ mock boto ];
|
||
|
|
||
|
checkInputs = [ pytest ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
${python.interpreter} -m pytest
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Amazon Kinesis Client Library for Python";
|
||
|
homepage = https://github.com/awslabs/amazon-kinesis-client-python;
|
||
|
license = licenses.asl;
|
||
|
maintainers = with maintainers; [ psyanticy ];
|
||
|
};
|
||
|
}
|