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
27 lines
652 B
Nix
27 lines
652 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages, mopidy }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-local-sqlite-${version}";
|
|
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy-local-sqlite";
|
|
rev = "v${version}";
|
|
sha256 = "1fjd9ydbfwd1n9b9zw8zjn4l7c5hpam2n0xs51pjkjn82m3zq9zv";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
pythonPackages.uritools
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/mopidy/mopidy-local-sqlite;
|
|
description = "Mopidy SQLite local library extension";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rvolosatovs ];
|
|
};
|
|
}
|