nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "todoist-python";
10 version = "8.1.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-Rkg6eSLiQe8DZaVu2DEnlKLe8RLkRwKmpw+TaYj+lp0=";
16 };
17
18 propagatedBuildInputs = [ requests ];
19
20 pythonImportsCheck = [ "todoist" ];
21
22 meta = {
23 description = "Official Todoist Python API library";
24 homepage = "https://todoist-python.readthedocs.io/";
25 license = lib.licenses.mit;
26 maintainers = [ ];
27 };
28}