mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
python3Packages.deezer-py: init at 1.1.1
This commit is contained in:
parent
2ffb02ccd7
commit
d1ea8a1377
30
pkgs/development/python-modules/deezer-py/default.nix
Normal file
30
pkgs/development/python-modules/deezer-py/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deezer-py";
|
||||
version = "1.1.1";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-EAiGMSLrRsF03FMLkizy3Fm+nAldSTxe9KdXFFep0iQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "requests" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://gitlab.com/RemixDev/deezer-py";
|
||||
description = "A wrapper for all Deezer's APIs";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ natto1784 ];
|
||||
};
|
||||
}
|
@ -1882,6 +1882,8 @@ in {
|
||||
|
||||
deeptoolsintervals = callPackage ../development/python-modules/deeptoolsintervals { };
|
||||
|
||||
deezer-py = callPackage ../development/python-modules/deezer-py { };
|
||||
|
||||
deezer-python = callPackage ../development/python-modules/deezer-python { };
|
||||
|
||||
defcon = callPackage ../development/python-modules/defcon { };
|
||||
|
Loading…
Reference in New Issue
Block a user