1{ lib 2, buildPythonPackage 3, fetchPypi 4, oauthlib 5, requests 6, requests_oauthlib 7}: 8 9buildPythonPackage rec { 10 pname = "lmnotify"; 11 version = "0.0.6"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-cCP7BU2f7QJe9gAI298cvkp3OGijvBv8G1RN7qfZ5PE="; 16 }; 17 18 propagatedBuildInputs = [ oauthlib requests requests_oauthlib ]; 19 20 doCheck = false; # no tests exist 21 22 pythonImportsCheck = [ "lmnotify" ]; 23 24 meta = with lib; { 25 description = "Python package for sending notifications to LaMetric Time"; 26 homepage = "https://github.com/keans/lmnotify"; 27 maintainers = with maintainers; [ rhoriguchi ]; 28 license = licenses.mit; 29 }; 30}