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

buildPythonPackage rec {
  version = "1.2.4";
  pname = "robotframework-databaselibrary";

  src = fetchPypi {
    inherit pname version;
    sha256 = "627d872b3dda6a308a650ac9e676dadedf9c294e4ef70ad207cbb86b78eb8847";
  };

  # unit tests are impure
  doCheck = false;

  propagatedBuildInputs = [ robotframework ];

  meta = with stdenv.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 ];
  };

}