Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, requests, oauthlib }: 2 3buildPythonPackage rec { 4 pname = "discogs-client"; 5 version = "2.2.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1n23xy33fdp3dq0hhfdg0lx4z7rhdi74ik8v1mc7rql1jbxl7bmf"; 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}