nixpkgs/pkgs/development/python-modules/todoist/default.nix
Jörg Thalheim 887295fd2d
treewide: remove the-kenny from maintainers
@the-kenny did a good job in the past and is set as maintainer in many package,
however since 2017-2018 he stopped contributing. To create less confusion
in pull requests when people try to request his feedback, I removed him as
maintainer from all packages.
2020-05-09 10:28:57 +01:00

21 lines
478 B
Nix

{ stdenv, fetchPypi, buildPythonPackage
, requests }:
buildPythonPackage rec {
pname = "todoist-python";
version = "8.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "0khipf8v0gqvspq7m67aqv0ql3rdqyqr8qfhbm1szc1z6mygj8ns";
};
propagatedBuildInputs = [ requests ];
meta = {
description = "The official Todoist Python API library";
homepage = "https://todoist-python.readthedocs.io/en/latest/";
license = stdenv.lib.licenses.mit;
};
}