mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
python311Packages.pylast: 5.2.0 -> 5.3.0
Diff: https://github.com/pylast/pylast/compare/refs/tags/5.2.0...5.3.0 Changelog: https://github.com/pylast/pylast/releases/tag/5.3.0
This commit is contained in:
parent
8d3b5db8f5
commit
79f3a491b7
@ -13,24 +13,24 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pylast";
|
pname = "pylast";
|
||||||
version = "5.2.0";
|
version = "5.3.0";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pylast";
|
owner = "pylast";
|
||||||
repo = pname;
|
repo = "pylast";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-6yxsqruosSOJ5LeIBbvuEko4s9qU/ObNZiJD5YH/hvY=";
|
hash = "sha256-dgqTNISeyBkZ2m68pqw5rsoyPxLW4wWkv6iqq9bD5Ek=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [
|
||||||
hatch-vcs
|
hatch-vcs
|
||||||
hatchling
|
hatchling
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
@ -42,6 +42,7 @@ buildPythonPackage rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python interface to last.fm (and compatibles)";
|
description = "Python interface to last.fm (and compatibles)";
|
||||||
homepage = "https://github.com/pylast/pylast";
|
homepage = "https://github.com/pylast/pylast";
|
||||||
|
changelog = "https://github.com/pylast/pylast/releases/tag/${version}";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [
|
maintainers = with maintainers; [
|
||||||
fab
|
fab
|
||||||
|
Loading…
Reference in New Issue
Block a user