My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/todoist/default.nix

22 lines
578 B

{ lib, fetchPypi, buildPythonPackage
, requests, pythonOlder, typing
}:
buildPythonPackage rec {
pname = "todoist-python";
version = "8.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-AFRKA5VRD6jyiguZYP7WOQOWqHq1GjUzbuez0f1070U=";
};
propagatedBuildInputs = [ requests ] ++ lib.optional (pythonOlder "3.5") typing;
meta = with lib; {
description = "The official Todoist Python API library";
homepage = "https://todoist-python.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}