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

47 lines
900 B
Nix

{
lib,
buildPythonPackage,
dbus-python,
fetchFromGitHub,
flask,
flask-cors,
poetry-core,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "swspotify";
version = "1.2.3";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "SwagLyrics";
repo = "SwSpotify";
rev = "v${version}";
hash = "sha256-xGLvc154xnje45Akf7H1qqQRUc03gGVt8AhGlkcP3kY=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
dbus-python
flask
flask-cors
requests
];
# Tests want to use Dbus
doCheck = false;
pythonImportsCheck = [ "SwSpotify" ];
meta = with lib; {
description = "Library to get the currently playing song and artist from Spotify";
homepage = "https://github.com/SwagLyrics/SwSpotify";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}