Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / todoist / default.nix
blobd3d93e79946b73b346dda4e01215a2b0f73510be
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , requests
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "todoist-python";
10   version = "8.1.4";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-Rkg6eSLiQe8DZaVu2DEnlKLe8RLkRwKmpw+TaYj+lp0=";
18   };
20   propagatedBuildInputs = [
21     requests
22   ];
24   pythonImportsCheck = [
25     "todoist"
26   ];
28   meta = with lib; {
29     description = "The official Todoist Python API library";
30     homepage = "https://todoist-python.readthedocs.io/";
31     license = licenses.mit;
32     maintainers = with maintainers; [ ];
33   };