pythonPackages.todoist: Init at 7.0.17.

This commit is contained in:
Moritz Ulrich 2017-08-23 13:00:22 +02:00
parent 9d4b711908
commit d5743c08a2
No known key found for this signature in database
GPG Key ID: 45833CACBC407FA7
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, python, buildPythonPackage
, requests }:
buildPythonPackage rec {
pname = "todoist-python";
version = "7.0.17";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/t/${pname}/${name}.tar.gz";
sha256 = "0gs4vlvvmkz627ybswj0l6m3c8dyrqgfqjlawbc8d9rkx88srkr2";
};
propagatedBuildInputs = [ requests ];
meta = {
description = "The official Todoist Python API library";
homepage = http://todoist-python.readthedocs.io/en/latest/;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}

View File

@ -28729,6 +28729,8 @@ EOF
};
};
todoist = callPackage ../development/python-modules/todoist { };
zxcvbn-python = callPackage ../development/python-modules/zxcvbn-python { };
incremental = callPackage ../development/python-modules/incremental { };