python3Packages.web: 0.61 -> 0.62, fix build

This commit is contained in:
Sandro Jäckel 2020-12-23 20:21:18 +01:00
parent 49ca6941c2
commit c1011fcea4
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,19 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook
, cheroot
, dbutils, mysqlclient, pymysql, mysql-connector, psycopg2
}:
buildPythonPackage rec {
version = "0.62";
pname = "web.py";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e";
};
propagatedBuildInputs = [ cheroot ];
# requires multiple running databases
doCheck = false;
pythonImportsCheck = [ "web" ];
checkInputs = [ pytestCheckHook dbutils mysqlclient pymysql mysql-connector psycopg2 ];
meta = with stdenv.lib; {
description = "Makes web apps";
longDescription = ''
@ -22,7 +29,7 @@ buildPythonPackage rec {
'';
homepage = "https://webpy.org/";
license = licenses.publicDomain;
maintainers = with maintainers; [ layus ];
maintainers = with maintainers; [ layus SuperSandro2000 ];
};
}