1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook
3 , dbutils, mysqlclient, pymysql, mysql-connector, psycopg2
6 buildPythonPackage rec {
11 inherit pname version;
12 sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e";
15 propagatedBuildInputs = [ cheroot ];
17 # requires multiple running databases
20 pythonImportsCheck = [ "web" ];
22 nativeCheckInputs = [ pytestCheckHook dbutils mysqlclient pymysql mysql-connector psycopg2 ];
25 description = "Makes web apps";
27 Think about the ideal way to write a web app.
28 Write the code to make it happen.
30 homepage = "https://webpy.org/";
31 license = licenses.publicDomain;
32 maintainers = with maintainers; [ layus ];