mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Add apscheduler python package.
This commit is contained in:
parent
6bda0b00e0
commit
e9f605d7e6
@ -438,6 +438,24 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
apscheduler = buildPythonPackage rec {
|
||||||
|
name = "APScheduler-2.1.2";
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pythonPackages; [ futures tzlocal six pytest mock];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/A/APScheduler/APScheduler-2.1.2.tar.gz";
|
||||||
|
md5 = "6862959d460c16ef325d63e1fc3a6684";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with pkgs.stdenv.lib; {
|
||||||
|
description = "Advanced Python Scheduler (APScheduler) is a Python library that lets you schedule your Python code to be executed";
|
||||||
|
homepage = http://pypi.python.org/pypi/APScheduler/;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
area53 = buildPythonPackage (rec {
|
area53 = buildPythonPackage (rec {
|
||||||
name = "area53-b2c9cdcabd";
|
name = "area53-b2c9cdcabd";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user