Files
nixpkgs/pkgs/development/python-modules/httpserver/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

28 lines
656 B
Nix

{ lib, fetchPypi, buildPythonPackage, docopt, pythonOlder }:
buildPythonPackage rec {
pname = "httpserver";
version = "1.1.0";
format = "setuptools";
buildInputs = [ docopt ];
# Tests pull in lots of other dependencies to emulate different web
# drivers.
doCheck = false;
# Because it uses asyncio
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";
};
meta = {
description = "Asyncio implementation of an HTTP server";
homepage = "https://github.com/thomwiggers/httpserver";
license = with lib.licenses; [ bsd3 ];
};
}