blob: ebbbc206768b12c02322ff8631e0f39198bda6c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
let
pname = "ephemeral-port-reserve";
version = "1.1.4";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchFromGitHub {
owner = "Yelp";
repo = "ephemeral-port-reserve";
rev = "v${version}";
hash = "sha256-R6NRpfaT05PO/cTWgCakiGfCuCyucjVOXbAezn5x1cU=";
};
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# can't find hostname in our darwin build environment
"test_fqdn"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "ephemeral_port_reserve" ];
meta = {
description = "Find an unused port, reliably";
mainProgram = "ephemeral-port-reserve";
homepage = "https://github.com/Yelp/ephemeral-port-reserve/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
|