nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 buildPythonPackage,
5 fetchPypi,
6 h11,
7 sansio-multipart,
8}:
9
10buildPythonPackage rec {
11 pname = "overly";
12 version = "0.1.85";
13
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "20a99526c7859acc859e87afd97b5c4916405e7477834f727b49210e478370cb";
19 };
20
21 propagatedBuildInputs = [
22 h11
23 sansio-multipart
24 ];
25
26 # upstream has no tests
27 doCheck = false;
28
29 pythonImportsCheck = [ "overly" ];
30
31 meta = {
32 description = "Overly configurable http server for client testing";
33 homepage = "https://github.com/theelous3/overly";
34 license = lib.licenses.mit;
35 maintainers = with lib.maintainers; [ dotlambda ];
36 broken = stdenv.hostPlatform.isDarwin; # https://github.com/theelous3/overly/issues/2
37 };
38}