depot/third_party/nixpkgs/pkgs/development/python-modules/soundcloud-v2/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

43 lines
769 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 = [ ];
};
}