1{ stdenv, fetchPypi, buildPythonPackage 2, requests }: 3 4buildPythonPackage rec { 5 pname = "todoist-python"; 6 version = "7.0.17"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0gs4vlvvmkz627ybswj0l6m3c8dyrqgfqjlawbc8d9rkx88srkr2"; 11 }; 12 13 propagatedBuildInputs = [ requests ]; 14 15 meta = { 16 description = "The official Todoist Python API library"; 17 homepage = http://todoist-python.readthedocs.io/en/latest/; 18 license = stdenv.lib.licenses.mit; 19 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 20 }; 21}