summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ebaysdk/default.nix
blob: 1590fff9efd4b94c0d5618af8b229910caec7d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  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 = {
    description = "eBay SDK for Python";
    homepage = "https://github.com/timotheus/ebaysdk-python";
    license = lib.licenses.cddl;
    maintainers = [ lib.maintainers.mkg20001 ];
  };
}