Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 37 lines 739 B view raw
1{ lib, buildPythonPackage, fetchPypi, pythonOlder 2, attrs 3, audio-metadata 4, marshmallow 5, pendulum 6, protobuf 7}: 8 9buildPythonPackage rec { 10 pname = "google-music-proto"; 11 version = "2.4.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "798ac14408593525d1865f608b30f71cce291b1a239f4d63f14bb4dcf79d7528"; 16 }; 17 18 propagatedBuildInputs = [ 19 attrs 20 audio-metadata 21 marshmallow 22 pendulum 23 protobuf 24 ]; 25 26 # No tests 27 doCheck = false; 28 29 disabled = pythonOlder "3.6"; 30 31 meta = with lib; { 32 homepage = https://github.com/thebigmunch/google-music-proto; 33 description = "Sans-I/O wrapper of Google Music API calls"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ jakewaksbaum ]; 36 }; 37}