2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-02-09 09:27:45 +00:00
|
|
|
, 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 ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-09 09:27:45 +00:00
|
|
|
description = "Database Library contains utilities meant for Robot Framework";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/franz-see/Robotframework-Database-Library";
|
2020-02-09 09:27:45 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ talkara ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|