python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / stups-cli-support / default.nix
blob7b37464a69be5f3f581eea969a4ccd686cdf7551
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   setuptools,
6   clickclick,
7   dnspython,
8   requests,
9   pytestCheckHook,
10   isPy3k,
13 buildPythonPackage rec {
14   pname = "stups-cli-support";
15   version = "1.1.20";
16   pyproject = true;
17   disabled = !isPy3k;
19   src = fetchFromGitHub {
20     owner = "zalando-stups";
21     repo = "stups-cli-support";
22     rev = version;
23     sha256 = "1r6g29gd009p87m8a6wv4rzx7f0564zdv67qz5xys4wsgvc95bx0";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     clickclick
30     dnspython
31     requests
32   ];
34   preCheck = "export HOME=$TEMPDIR";
36   nativeCheckInputs = [ pytestCheckHook ];
38   meta = with lib; {
39     description = "Helper library for all STUPS command line tools";
40     homepage = "https://github.com/zalando-stups/stups-cli-support";
41     license = licenses.asl20;
42     maintainers = [ maintainers.mschuwalow ];
43   };