blob: d3b35577a85f0fe318fbc8d9d8245bd9eb79c3ee (
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
43
44
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
clickclick,
dnspython,
requests,
pytestCheckHook,
isPy3k,
}:
buildPythonPackage rec {
pname = "stups-cli-support";
version = "1.1.22";
pyproject = true;
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "zalando-stups";
repo = "stups-cli-support";
rev = version;
sha256 = "sha256-/UsQzV1Ljd+K8AIj55UmiVXAshX+rUbYxFeSK7YGgn8=";
};
build-system = [ setuptools ];
dependencies = [
clickclick
dnspython
requests
];
preCheck = "export HOME=$TEMPDIR";
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Helper library for all STUPS command line tools";
homepage = "https://github.com/zalando-stups/stups-cli-support";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.mschuwalow ];
};
}
|