depot/third_party/nixpkgs/pkgs/development/python-modules/discogs-client/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
924 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
oauthlib,
python-dateutil,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "discogs-client";
version = "2.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "joalla";
repo = "discogs_client";
rev = "refs/tags/v${version}";
hash = "sha256-sTzYhUKPqaCE553FqWR4qdtDDtymhuybHWiDOUwgglA=";
};
propagatedBuildInputs = [
requests
oauthlib
python-dateutil
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "discogs_client" ];
meta = with lib; {
description = "Unofficial Python API client for Discogs";
homepage = "https://github.com/joalla/discogs_client";
changelog = "https://github.com/joalla/discogs_client/releases/tag/v${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ fab ];
};
}