depot/third_party/nixpkgs/pkgs/development/python-modules/soundcloud-v2/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

43 lines
787 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
dacite,
python-dateutil,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "soundcloud-v2";
version = "1.5.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-cnM70Yz9xw3TPqGk8VYAag6u1nLjQS2kS7xRBJtFodU=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
dacite
python-dateutil
requests
];
# tests require network
doCheck = false;
pythonImportsCheck = [ "soundcloud" ];
meta = with lib; {
description = "Python wrapper for the v2 SoundCloud API";
homepage = "https://github.com/7x11x13/soundcloud.py";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}