nixpkgs/pkgs/development/python-modules/discogs_client/default.nix

20 lines
507 B
Nix
Raw Normal View History

2017-09-16 02:46:07 +01:00
{ stdenv, buildPythonPackage, fetchPypi, requests, oauthlib }:
buildPythonPackage rec {
pname = "discogs-client";
2020-06-06 07:47:03 +01:00
version = "2.3.0";
2017-09-16 02:46:07 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:03 +01:00
sha256 = "cc979fcbb5283f74d388c7111c8ed6bef920b01614a014d6b1c5d6fbb554bfc3";
2017-09-16 02:46:07 +01:00
};
propagatedBuildInputs = [ requests oauthlib ];
meta = with stdenv.lib; {
description = "Official Python API client for Discogs";
license = licenses.bsd2;
homepage = "https://github.com/discogs/discogs_client";
};
}