53 lines
1,014 B
Nix
53 lines
1,014 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
flaky,
|
||
|
hatch-vcs,
|
||
|
hatchling,
|
||
|
httpx,
|
||
|
importlib-metadata,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pylast";
|
||
|
version = "5.3.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "pylast";
|
||
|
repo = "pylast";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-dgqTNISeyBkZ2m68pqw5rsoyPxLW4wWkv6iqq9bD5Ek=";
|
||
|
};
|
||
|
|
||
|
build-system = [
|
||
|
hatch-vcs
|
||
|
hatchling
|
||
|
];
|
||
|
|
||
|
dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytestCheckHook
|
||
|
flaky
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "pylast" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python interface to last.fm (and compatibles)";
|
||
|
homepage = "https://github.com/pylast/pylast";
|
||
|
changelog = "https://github.com/pylast/pylast/releases/tag/${version}";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [
|
||
|
fab
|
||
|
rvolosatovs
|
||
|
];
|
||
|
};
|
||
|
}
|