about summary refs log tree commit diff
path: root/pkgs/development/python-modules/refery/default.nix
blob: cddfa64d361f4b48bfb17da397d43c0d1d0f4715 (plain) (blame)
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,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,

  poetry-core,
  pyyaml,
  colorama,
  junit-xml,
}:

buildPythonPackage rec {
  pname = "refery";
  version = "2.1.0";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha512-ju0lqCSg0zcZNqRXDmFX6X1ugBocpmHMBWJApO6Tzhm/tLMQTKy2RpB4C8fkKCEWA2mYX4w1dLdHe68hZixwkQ==";
  };

  propagatedBuildInputs = [
    poetry-core
    pyyaml
    colorama
    junit-xml
  ];

  pythonImportsCheck = [ "refery" ];

  disabled = pythonOlder "3.10";

  # No tests yet
  doCheck = false;

  meta = with lib; {
    description = "Functional testing tool";
    homepage = "https://github.com/RostanTabet/refery";
    mainProgram = "refery";
    maintainers = with maintainers; [ rostan-t ];
    license = licenses.mit;
  };
}