biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / overly / default.nix
blobea3b291700a01843f829c7d088c92837cdc04cfc
2   lib,
3   stdenv,
4   buildPythonPackage,
5   pythonOlder,
6   fetchPypi,
7   h11,
8   sansio-multipart,
9 }:
11 buildPythonPackage rec {
12   pname = "overly";
13   version = "0.1.85";
15   disabled = pythonOlder "3.6";
17   format = "setuptools";
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "20a99526c7859acc859e87afd97b5c4916405e7477834f727b49210e478370cb";
22   };
24   propagatedBuildInputs = [
25     h11
26     sansio-multipart
27   ];
29   # upstream has no tests
30   doCheck = false;
32   pythonImportsCheck = [ "overly" ];
34   meta = {
35     description = "Overly configurable http server for client testing";
36     homepage = "https://github.com/theelous3/overly";
37     license = lib.licenses.mit;
38     maintainers = with lib.maintainers; [ dotlambda ];
39     broken = stdenv.hostPlatform.isDarwin; # https://github.com/theelous3/overly/issues/2
40   };