sage: python-openid: move django and twill to checkInputs (#54949)

A search through the source code
(https://github.com/openid/python-openid/search?q=django and
https://github.com/openid/python-openid/search?q=twill) reveals
that they are only used in examples and tests.
This commit is contained in:
Robert Schütz 2019-01-31 10:14:36 +01:00 committed by Timo Kaufmann
parent 2e76049491
commit 052acfe930

View File

@ -20,15 +20,13 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
django
twill
pycrypto pycrypto
]; ];
# Cannot access the djopenid example module. # Cannot access the djopenid example module.
# I don't know how to fix that (adding the examples dir to PYTHONPATH doesn't work) # I don't know how to fix that (adding the examples dir to PYTHONPATH doesn't work)
doCheck = false; doCheck = false;
checkInputs = [ nose ]; checkInputs = [ nose django twill ];
checkPhase = '' checkPhase = ''
nosetests nosetests
''; '';