python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / teamcity-messages / default.nix
blobb68f7acbca927a0083c3aefa4a9c5cb172b57cd4
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "teamcity-messages";
11   version = "1.32";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "JetBrains";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-9az7kD7nKqMF2b3/eFgF+pOKKIYLvTy2sf4TSJfHRnA=";
21   };
23   nativeCheckInputs = [ pytestCheckHook ];
25   pytestFlagsArray = [ "tests/unit-tests/" ];
27   pythonImportsCheck = [ "teamcity" ];
29   meta = with lib; {
30     description = "Python unit test reporting to TeamCity";
31     homepage = "https://github.com/JetBrains/teamcity-messages";
32     license = licenses.asl20;
33     maintainers = with maintainers; [ fab ];
34   };