Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 39 lines 759 B view raw
1{ 2 lib, 3 pythonPackages, 4 fetchPypi, 5 mopidy, 6}: 7 8pythonPackages.buildPythonApplication rec { 9 pname = "mopidy-mopify"; 10 version = "1.7.3"; 11 pyproject = true; 12 13 src = fetchPypi { 14 inherit version; 15 pname = "Mopidy-Mopify"; 16 hash = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE="; 17 }; 18 19 build-system = [ 20 pythonPackages.setuptools 21 ]; 22 23 dependencies = [ 24 mopidy 25 pythonPackages.configobj 26 ]; 27 28 # no tests implemented 29 doCheck = false; 30 31 pythonImportsCheck = [ "mopidy_mopify" ]; 32 33 meta = with lib; { 34 homepage = "https://github.com/dirkgroenen/mopidy-mopify"; 35 description = "Mopidy webclient based on the Spotify webbased interface"; 36 license = licenses.gpl3; 37 maintainers = [ maintainers.Gonzih ]; 38 }; 39}