pythonPackages.APScheduler: fix tests
This commit is contained in:
parent
12caccfe80
commit
e2bc80ce49
65
pkgs/development/python-modules/APScheduler/default.nix
Normal file
65
pkgs/development/python-modules/APScheduler/default.nix
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, setuptools_scm
|
||||||
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, sqlalchemy
|
||||||
|
, tornado
|
||||||
|
, twisted
|
||||||
|
, mock
|
||||||
|
, trollius
|
||||||
|
, gevent
|
||||||
|
, six
|
||||||
|
, pytz
|
||||||
|
, tzlocal
|
||||||
|
, funcsigs
|
||||||
|
, futures
|
||||||
|
, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "APScheduler";
|
||||||
|
version = "3.3.1";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "f68874dff1bdffcc6ce3adb7840c1e4d162c609a3e3f831351df30b75732767b";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
setuptools_scm
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
pytestcov
|
||||||
|
sqlalchemy
|
||||||
|
tornado
|
||||||
|
twisted
|
||||||
|
mock
|
||||||
|
trollius
|
||||||
|
gevent
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
six
|
||||||
|
pytz
|
||||||
|
tzlocal
|
||||||
|
funcsigs
|
||||||
|
] ++ lib.optional (!isPy3k) futures;
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Somehow it cannot find pytestcov
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Python library that lets you schedule your Python code to be executed";
|
||||||
|
homepage = http://pypi.python.org/pypi/APScheduler/;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -1247,39 +1247,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
apscheduler = buildPythonPackage rec {
|
APScheduler = callPackage ../development/python-modules/APScheduler { };
|
||||||
name = "APScheduler-3.3.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/A/APScheduler/${name}.tar.gz";
|
|
||||||
sha256 = "f68874dff1bdffcc6ce3adb7840c1e4d162c609a3e3f831351df30b75732767b";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [
|
|
||||||
pytest
|
|
||||||
sqlalchemy
|
|
||||||
tornado
|
|
||||||
twisted
|
|
||||||
mock
|
|
||||||
trollius
|
|
||||||
gevent
|
|
||||||
setuptools_scm
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [
|
|
||||||
six
|
|
||||||
pytz
|
|
||||||
tzlocal
|
|
||||||
futures
|
|
||||||
funcsigs
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with pkgs.stdenv.lib; {
|
|
||||||
description = "A Python library that lets you schedule your Python code to be executed";
|
|
||||||
homepage = http://pypi.python.org/pypi/APScheduler/;
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
args = buildPythonPackage rec {
|
args = buildPythonPackage rec {
|
||||||
name = "args-0.1.0";
|
name = "args-0.1.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user