9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.6";
16 src = fetchFromGitHub {
17 owner = "valentinalexeev";
19 rev = "refs/tags/${version}";
20 sha256 = "sha256-8CL7ZQ+tV0CKdqWWiPDbo6Q5d1iIj/vNbYshdjUpYSw=";
23 propagatedBuildInputs = [ requests ];
25 # no tests implemented
28 pythonImportsCheck = [ "pdunehd" ];
31 description = "Python wrapper for Dune HD media player API";
32 homepage = "https://github.com/valentinalexeev/pdunehd";
33 changelog = "https://github.com/valentinalexeev/pdunehd/releases/tag/${version}";
34 license = licenses.asl20;
35 maintainers = with maintainers; [ dotlambda ];