python3Packages.pylast: 4.1.0 -> 4.2.0

This commit is contained in:
Fabian Affolter 2021-03-18 10:16:05 +01:00
parent 84b23a91bd
commit f70cac3b3d

View File

@ -1,27 +1,32 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, certifi, six { lib
, setuptools_scm , buildPythonPackage
, fetchPypi
, certifi
, six
, setuptools-scm
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylast"; pname = "pylast";
version = "4.1.0"; version = "4.2.0";
disabled = pythonOlder "3.6";
disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "ad084aec1bf7e307bc42d7cc1a003851f5bee1ad24fb697a9fdc300bbfe63932"; sha256 = "sha256-w/mkAUUgj7L7Xv+nz1pI1TYKfihH3S3MbxaNQ4VtoH0=";
}; };
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ certifi six ]; propagatedBuildInputs = [ certifi six ];
# tests require last.fm credentials # tests require last.fm credentials
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
description = "Python interface to last.fm (and compatibles)";
homepage = "https://github.com/pylast/pylast"; homepage = "https://github.com/pylast/pylast";
description = "A python interface to last.fm (and compatibles)";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ rvolosatovs ]; maintainers = with maintainers; [ rvolosatovs ];
}; };