fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
581 B
Nix
33 lines
581 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lxml,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ebaysdk";
|
|
version = "2.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
}
|