nixpkgs-overlay/python-modules/deezer-py/default.nix
Simon Bruder 9356154fb1
deemix: init at 2.0.16
deezer-py: init at 0.0.15
2021-05-19 15:19:52 +02:00

32 lines
628 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, buildPythonPackage
, fetchPypi
, requests
, eventlet
}:
buildPythonPackage rec {
pname = "deezer-py";
version = "0.0.15";
src = fetchPypi {
inherit pname version;
sha256 = "0sg4r8f11b11ygb5ra7gwsnxjhkzwhaniii0v69kqcypkxncc3ys";
};
propagatedBuildInputs = [
requests
eventlet
];
doCheck = false; # OSError: protocol not found
meta = with lib; {
description = "A python wrapper for all Deezers APIs";
homepage = "https://gitlab.com/RemixDev/deezer-py";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}