blob: 726b48bcdae0dea4b8300345ccc4dca409f4f6be (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
robotframework,
robotframework-assertion-engine,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "robotframework-databaselibrary";
version = "2.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "MarketSquare";
repo = "Robotframework-Database-Library";
tag = "v.${version}";
hash = "sha256-ZZOhGZTJGWYCHyvJXDYGn9BMuPioCVIu0KONGkXsRmk=";
};
nativeBuildInputs = [
robotframework
setuptools
];
propagatedBuildInputs = [
robotframework
robotframework-assertion-engine
];
pythonImportsCheck = [ "DatabaseLibrary" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Database Library contains utilities meant for Robot Framework";
homepage = "https://github.com/MarketSquare/Robotframework-Database-Library";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ talkara ];
};
}
|