forked from mirrors/nixpkgs
58 lines
1,015 B
Nix
58 lines
1,015 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, environs
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytest-mock
|
|
, pytest-vcr
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, tornado
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "deezer-python";
|
|
version = "5.2.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "browniebroke";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-jaF5vQx8/qP9pGLfilx86v1GxHbjxaRghjjI5Me0pU0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
checkInputs = [
|
|
environs
|
|
pytest-mock
|
|
pytest-vcr
|
|
pytestCheckHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
tornado
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace " --cov=deezer" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [ "deezer" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper around the Deezer API";
|
|
homepage = "https://github.com/browniebroke/deezer-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ synthetica ];
|
|
};
|
|
}
|