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.
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ lib, buildPythonPackage, fetchFromGitHub, requests, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "kiss-headers";
|
|
version = "2.3.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Ousret";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-xPjw/uJTmvmQZDrI3i1KTUeAZuDF1mc13hvFBl8Erh0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=kiss_headers --doctest-modules --cov-report=term-missing -rxXs" "--doctest-modules -rxXs"
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# Tests require internet access
|
|
"kiss_headers/__init__.py"
|
|
"tests/test_serializer.py"
|
|
"tests/test_with_http_request.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "kiss_headers" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python package for HTTP/1.1 style headers";
|
|
homepage = "https://github.com/Ousret/kiss-headers";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ wolfangaukang ];
|
|
};
|
|
}
|