mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
python312Packages.httpserver: refactor
- enable tests - add pythonImportsCheck
This commit is contained in:
parent
e08d91122e
commit
334e22c2d7
@ -1,30 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
fetchPypi,
|
||||
buildPythonPackage,
|
||||
docopt,
|
||||
fetchPypi,
|
||||
freezegun,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
selenium,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "httpserver";
|
||||
version = "1.1.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
buildInputs = [ docopt ];
|
||||
|
||||
# Tests pull in lots of other dependencies to emulate different web
|
||||
# drivers.
|
||||
doCheck = false;
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";
|
||||
hash = "sha256-W8Pa+CUS8vCzEcymjY6no5GMdSDSZs4bhmDtRsR4wuA=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ docopt ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
freezegun
|
||||
selenium
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "httpserver" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Tests want driver for Firefox
|
||||
"tests/test_selenium.py"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Asyncio implementation of an HTTP server";
|
||||
mainProgram = "httpserver";
|
||||
homepage = "https://github.com/thomwiggers/httpserver";
|
||||
license = with lib.licenses; [ bsd3 ];
|
||||
maintainers = [ ];
|
||||
mainProgram = "httpserver";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user