python3Packages.ebaysdk: init at 2.2.0

This commit is contained in:
Maciej Krüger 2021-11-02 04:22:14 +01:00
parent 00021b8642
commit d5bac9c0d7
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, lxml
, requests
}:
buildPythonPackage rec {
pname = "ebaysdk";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Lrh11wa0gfWcqN0wdFON9+UZaBT5zhLQ74RpA0Opx/M=";
};
propagatedBuildInputs = [
lxml
requests
];
# requires network
doCheck = false;
meta = with lib; {
description = "eBay SDK for Python";
homepage = "https://github.com/timotheus/ebaysdk-python";
license = licenses.cddl;
maintainers = [ maintainers.mkg20001 ];
};
}

View File

@ -2367,6 +2367,8 @@ in {
easywatch = callPackage ../development/python-modules/easywatch { };
ebaysdk = callPackage ../development/python-modules/ebaysdk { };
ec2instanceconnectcli = callPackage ../tools/virtualization/ec2instanceconnectcli { };
eccodes = toPythonModule (pkgs.eccodes.override {