mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
36 lines
886 B
Nix
36 lines
886 B
Nix
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook
|
|
, cheroot
|
|
, dbutils, mysqlclient, pymysql, mysql-connector, psycopg2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.62";
|
|
pname = "web.py";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cheroot ];
|
|
|
|
# requires multiple running databases
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "web" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook dbutils mysqlclient pymysql mysql-connector psycopg2 ];
|
|
|
|
meta = with lib; {
|
|
description = "Makes web apps";
|
|
longDescription = ''
|
|
Think about the ideal way to write a web app.
|
|
Write the code to make it happen.
|
|
'';
|
|
homepage = "https://webpy.org/";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ layus SuperSandro2000 ];
|
|
};
|
|
|
|
}
|