ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
24 lines
643 B
Nix
24 lines
643 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages, mopidy, mopidy-spotify }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy-spotify-tunigo";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trygveaa";
|
|
repo = "mopidy-spotify-tunigo";
|
|
rev = "v${version}";
|
|
sha256 = "1jwk0b2iz4z09qynnhcr07w15lx6i1ra09s9lp48vslqcf2fp36x";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mopidy mopidy-spotify pythonPackages.tunigo ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mopidy extension for providing the browse feature of Spotify";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.spwhitt ];
|
|
};
|
|
}
|