python310Packages.soundcloud-v2: init at 1.3.1

This commit is contained in:
Mario Rodas 2022-07-26 04:20:00 +00:00
parent 98db578afa
commit fefa4ba247
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, dacite
, python-dateutil
, requests
}:
buildPythonPackage rec {
pname = "soundcloud-v2";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "9a9c12aa22e71566e2ca6015267cabc1856afd79fa458f0fc43c44872c184741";
};
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; [ marsam ];
};
}

View file

@ -9986,6 +9986,8 @@ in {
sortedcontainers = callPackage ../development/python-modules/sortedcontainers { };
soundcloud-v2 = callPackage ../development/python-modules/soundcloud-v2 { };
sounddevice = callPackage ../development/python-modules/sounddevice { };
soundfile = callPackage ../development/python-modules/soundfile { };