nixpkgs/pkgs/development/python-modules/spotipy/default.nix
Martin Weinelt b034c434f6 pythonPackages.spotipy: disable tests and cleanup
Tests require network access.
2020-10-29 10:52:28 -07:00

33 lines
740 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, six }:
buildPythonPackage rec {
pname = "spotipy";
version = "2.16.1";
src = fetchPypi {
inherit pname version;
sha256 = "1f50xczv8kgly6wz6zrvqzwdj6nvhdlgx8wnrhmbipjrb6qacr25";
};
propagatedBuildInputs = [ requests six ];
# tests want to access the spotify API
doCheck = false;
pythonImportsCheck = [
"spotipy"
"spotipy.oauth2"
];
meta = with lib; {
homepage = "https://spotipy.readthedocs.org/";
changelog = "https://github.com/plamere/spotipy/blob/${version}/CHANGELOG.md";
description = "A light weight Python library for the Spotify Web API";
license = licenses.mit;
maintainers = with maintainers; [ rvolosatovs ];
};
}