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