My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ebaysdk/default.nix

31 lines
551 B

{ 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 ];
};
}