nixpkgs/pkgs/applications/audio/mopidy/mopify.nix

24 lines
633 B
Nix
Raw Normal View History

{ lib, pythonPackages, mopidy }:
2014-12-04 17:19:13 +00:00
pythonPackages.buildPythonApplication rec {
pname = "Mopidy-Mopify";
version = "1.6.1";
2014-12-04 17:19:13 +00:00
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "93ad2b3d38b1450c8f2698bb908b0b077a96b3f64cdd6486519e518132e23a5c";
2014-12-04 17:19:13 +00:00
};
propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
2014-12-04 17:19:13 +00:00
# no tests implemented
2014-12-04 17:19:13 +00:00
doCheck = false;
meta = with lib; {
homepage = "https://github.com/dirkgroenen/mopidy-mopify";
2015-04-28 08:54:58 +00:00
description = "A mopidy webclient based on the Spotify webbased interface";
2014-12-04 17:19:13 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.Gonzih ];
};
}