Files
nixpkgs/pkgs/development/python-modules/discogs-client/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

44 lines
912 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
oauthlib,
python-dateutil,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "discogs-client";
version = "2.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "joalla";
repo = "discogs_client";
tag = "v${version}";
hash = "sha256-2mMBfOM5sOJsuoxrT3Ku99zDQ8wDw12zRloRLHRDRL0=";
};
propagatedBuildInputs = [
requests
oauthlib
python-dateutil
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "discogs_client" ];
meta = {
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 = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fab ];
};
}