mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #41310 from Assassinkin/aws_kinesis
pythonPackages.amazon_kclpy: init at 1.5.0
This commit is contained in:
commit
104994fdc4
34
pkgs/development/python-modules/amazon_kclpy/default.nix
Normal file
34
pkgs/development/python-modules/amazon_kclpy/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ 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.amazonsl;
|
||||
maintainers = with maintainers; [ psyanticy ];
|
||||
};
|
||||
}
|
@ -201,6 +201,8 @@ in {
|
||||
|
||||
# packages defined elsewhere
|
||||
|
||||
amazon_kclpy = callPackage ../development/python-modules/amazon_kclpy { };
|
||||
|
||||
backports_csv = callPackage ../development/python-modules/backports_csv {};
|
||||
|
||||
bap = callPackage ../development/python-modules/bap {
|
||||
|
Loading…
Reference in New Issue
Block a user