e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
75 lines
1.4 KiB
Nix
75 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, zope-interface
|
|
, zope-schema
|
|
, zope-cachedescriptors
|
|
, pytz
|
|
, webtest
|
|
, beautifulsoup4
|
|
, soupsieve
|
|
, wsgiproxy2
|
|
, six
|
|
, mock
|
|
, zope-testing
|
|
, zope-testrunner
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-testbrowser";
|
|
version = "6.0";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "zope.testbrowser";
|
|
inherit version;
|
|
sha256 = "sha256-RLd6XpA3q+3DZHai6j3H6XTWE85Sk913zAL4iO4x+ho=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# remove test that requires network access
|
|
substituteInPlace src/zope/testbrowser/tests/test_doctests.py \
|
|
--replace "suite.addTests(wire)" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
zope-interface
|
|
zope-schema
|
|
zope-cachedescriptors
|
|
pytz
|
|
webtest
|
|
beautifulsoup4
|
|
soupsieve
|
|
wsgiproxy2
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
zope-testing
|
|
zope-testrunner
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m zope.testrunner --test-path=src
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"zope.testbrowser"
|
|
"zope.testbrowser.browser"
|
|
"zope.testbrowser.interfaces"
|
|
"zope.testbrowser.testing"
|
|
"zope.testbrowser.wsgi"
|
|
];
|
|
|
|
meta = {
|
|
description = "Programmable browser for functional black-box tests";
|
|
homepage = "https://github.com/zopefoundation/zope.testbrowser";
|
|
license = lib.licenses.zpl21;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|