bandcampsync: init at 0.8.0

Adds bandcampsync, a Python tool to automatically download
purchases from bandcamp.com.
This commit is contained in:
Haylin Moore
2026-07-16 23:04:52 -07:00
parent f7aec6c307
commit 750e254516
+38
View File
@@ -0,0 +1,38 @@
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "bandcampsync";
version = "0.8.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "meeb";
repo = "bandcampsync";
tag = "v${finalAttrs.version}";
hash = "sha256-j370Kn95CQuGjwOoFMXNNQZ5odlR/0uiw02hN/UVAb8=";
};
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
beautifulsoup4
curl-cffi
];
pythonImportsCheck = [ "bandcampsync" ];
meta = {
description = "Download your Bandcamp purchases automatically";
homepage = "https://github.com/meeb/bandcampsync";
changelog = "https://github.com/meeb/bandcampsync/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.haylin ];
mainProgram = "bandcampsync";
};
})