mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
2253fc27cd
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-discogs-client/versions
20 lines
495 B
Nix
20 lines
495 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, requests, oauthlib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "discogs-client";
|
|
version = "2.2.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1n23xy33fdp3dq0hhfdg0lx4z7rhdi74ik8v1mc7rql1jbxl7bmf";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests oauthlib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Official Python API client for Discogs";
|
|
license = licenses.bsd2;
|
|
homepage = "https://github.com/discogs/discogs_client";
|
|
};
|
|
}
|