about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/robotframework-databaselibrary/default.nix
blob: d24bcf5bfc7a5aa696e4da563a6d2ec95a9a4fad (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
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, robotframework
}:

buildPythonPackage rec {
  pname = "robotframework-databaselibrary";
  version = "1.4.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-/n4+xA/eLrcVEwlWyLQLrkX5waYaJKRkphwT22b7hTU=";
  };

  nativeBuildInputs = [
    robotframework
    setuptools
  ];

  propagatedBuildInputs = [
    robotframework
  ];

  # unit tests are impure
  doCheck = false;

  meta = with lib; {
    description = "Database Library contains utilities meant for Robot Framework";
    homepage = "https://github.com/franz-see/Robotframework-Database-Library";
    license = licenses.asl20;
    maintainers = with maintainers; [ talkara ];
  };

}