2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage
|
2017-08-23 13:00:22 +02:00
|
|
|
, requests }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "todoist-python";
|
2019-11-07 00:37:10 +01:00
|
|
|
version = "8.1.1";
|
2017-08-23 13:00:22 +02:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-07 00:37:10 +01:00
|
|
|
sha256 = "0khipf8v0gqvspq7m67aqv0ql3rdqyqr8qfhbm1szc1z6mygj8ns";
|
2017-08-23 13:00:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The official Todoist Python API library";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://todoist-python.readthedocs.io/en/latest/";
|
2017-08-23 13:00:22 +02:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
|
|
|
};
|
|
|
|
}
|