Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / deezer-py / default.nix
blob109f873138c66043b5f405153fdc1115c3dea0d9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "deezer-py";
10   version = "1.3.7";
11   format = "setuptools";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-saMy+IeAy6H9SgS8XHnZ9klFerGyr+vQqhuCtimgbEo=";
17   };
19   propagatedBuildInputs = [ requests ];
21   # Project has no tests
22   doCheck = false;
23   pythonImportsCheck = [ "requests" ];
25   meta = with lib; {
26     homepage = "https://gitlab.com/RemixDev/deezer-py";
27     description = "A wrapper for all Deezer's APIs";
28     license = licenses.gpl3Plus;
29     maintainers = with maintainers; [ natto1784 ];
30   };