Files
nixpkgs/pkgs/development/python-modules/overly/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
829 B
Nix

{
lib,
stdenv,
buildPythonPackage,
pythonOlder,
fetchPypi,
h11,
sansio-multipart,
}:
buildPythonPackage rec {
pname = "overly";
version = "0.1.85";
disabled = pythonOlder "3.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "20a99526c7859acc859e87afd97b5c4916405e7477834f727b49210e478370cb";
};
propagatedBuildInputs = [
h11
sansio-multipart
];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "overly" ];
meta = {
description = "Overly configurable http server for client testing";
homepage = "https://github.com/theelous3/overly";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
broken = stdenv.hostPlatform.isDarwin; # https://github.com/theelous3/overly/issues/2
};
}