f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
25 lines
629 B
Nix
25 lines
629 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, certifi, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylast";
|
|
version = "1.8.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "85f8dd96aef0ccba5f80379c3d7bc1fabd72f59aebab040daf40a8b72268f9bd";
|
|
};
|
|
|
|
propagatedBuildInputs = [ certifi six ];
|
|
|
|
# tests require last.fm credentials
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/pylast/pylast;
|
|
description = "A python interface to last.fm (and compatibles)";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rvolosatovs ];
|
|
};
|
|
}
|