pythonPackages.todoist: Init at 7.0.17.
This commit is contained in:
parent
9d4b711908
commit
d5743c08a2
22
pkgs/development/python-modules/todoist/default.nix
Normal file
22
pkgs/development/python-modules/todoist/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user