2018-01-20 12:42:24 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, httplib2
|
|
|
|
, oauth
|
|
|
|
, oauth2
|
|
|
|
, semantic-version
|
|
|
|
, flask
|
|
|
|
, httpretty
|
|
|
|
, oauthlib
|
|
|
|
, pyflakes
|
2018-01-20 12:47:22 +01:00
|
|
|
, pytest
|
2018-01-20 12:42:24 +01:00
|
|
|
, pytestcache
|
|
|
|
, pytestcov
|
|
|
|
, covCore
|
2019-02-16 09:02:30 +01:00
|
|
|
, pytest-flakes
|
2018-01-20 12:42:24 +01:00
|
|
|
, pytestpep8
|
|
|
|
, sphinx
|
|
|
|
, mock
|
2018-11-29 13:21:00 +01:00
|
|
|
, chalice
|
2018-01-20 12:42:24 +01:00
|
|
|
, isPy27
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PyLTI";
|
2018-08-13 09:30:56 +02:00
|
|
|
version = "0.7.0";
|
2018-01-20 12:42:24 +01:00
|
|
|
|
|
|
|
disabled = !isPy27;
|
|
|
|
|
|
|
|
# There is no need to fix mock. https://github.com/mitodl/pylti/pull/48
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "mock==1.0.1" "mock"
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ];
|
|
|
|
checkInputs = [
|
2018-01-20 12:47:22 +01:00
|
|
|
flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore
|
2019-02-16 09:02:30 +01:00
|
|
|
pytest-flakes pytestpep8 sphinx mock chalice
|
2018-01-20 12:42:24 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-13 09:30:56 +02:00
|
|
|
sha256 = "80938a235b1ab390f6889a95237d087ea7adde5cc50fcae9c80c49898e8ee78e";
|
2018-01-20 12:42:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Implementation of IMS LTI interface that works with edX";
|
|
|
|
homepage = "https://github.com/mitodl/pylti";
|
|
|
|
license = lib.licenses.bsdOriginal;
|
|
|
|
maintainers = with lib.maintainers; [ layus ];
|
|
|
|
};
|
2018-11-29 13:21:00 +01:00
|
|
|
}
|