1{ stdenv, buildPythonPackage, fetchPypi, requests, oauthlib }:
2
3buildPythonPackage rec {
4 pname = "discogs-client";
5 version = "2.3.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "cc979fcbb5283f74d388c7111c8ed6bef920b01614a014d6b1c5d6fbb554bfc3";
10 };
11
12 propagatedBuildInputs = [ requests oauthlib ];
13
14 meta = with stdenv.lib; {
15 description = "Official Python API client for Discogs";
16 license = licenses.bsd2;
17 homepage = "https://github.com/discogs/discogs_client";
18 };
19}