Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 39 lines 772 B view raw
1{ 2 lib, 3 pythonPackages, 4 fetchPypi, 5 mopidy, 6 glibcLocales, 7}: 8 9pythonPackages.buildPythonApplication rec { 10 pname = "mopidy-moped"; 11 version = "0.7.1"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit version; 16 pname = "Mopidy-Moped"; 17 sha256 = "15461174037d87af93dd59a236d4275c5abf71cea0670ffff24a7d0399a8a2e4"; 18 }; 19 20 LC_ALL = "en_US.UTF-8"; 21 buildInputs = [ glibcLocales ]; 22 23 build-system = [ pythonPackages.setuptools ]; 24 25 dependencies = [ mopidy ]; 26 27 # no tests implemented 28 doCheck = false; 29 30 pythonImportsCheck = [ "mopidy_moped" ]; 31 32 meta = with lib; { 33 homepage = "https://github.com/martijnboland/moped"; 34 description = "Web client for Mopidy"; 35 license = licenses.mit; 36 maintainers = [ ]; 37 hydraPlatforms = [ ]; 38 }; 39}