Files
nixpkgs/pkgs/development/python-modules/keepalive/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

37 lines
851 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
}:
buildPythonPackage rec {
pname = "keepalive";
version = "0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-PGuW+QYqWnYCLwydQenvVVLYCxyt1PzMG/jxg7odHsE=";
};
patches = [
# https://github.com/wikier/keepalive/pull/11
(fetchpatch {
name = "remove-use_2to3.patch";
url = "https://github.com/wikier/keepalive/commit/64393f6c5bf9c69d946b584fd664dd4df72604e6.patch";
hash = "sha256-/G1eEt8a4Qz7x5oQnDZZD/PIQwo9+oPZoy9OrXGHvR4=";
excludes = [ "README.md" ];
})
];
# No tests included
doCheck = false;
meta = {
description = "HTTP handler for `urllib` that supports HTTP 1.1 and keepalive";
homepage = "https://github.com/wikier/keepalive";
license = lib.licenses.lgpl21Plus;
};
}