pythonPackages.robotframework-databaselibrary: init at 1.2.4 (#67339)

* pythonPackages.robotframework-databaselibrary: init at 1.2.4

* maintainers: add talkara

* pythonPackages.robotframework-databaselibrary: add meta.maintainers: talkara
This commit is contained in:
talkara 2020-02-09 11:27:45 +02:00 committed by GitHub
parent 9c8716af68
commit e7d80e3e15
3 changed files with 36 additions and 0 deletions

View file

@ -6951,6 +6951,12 @@
githubId = 870673;
name = "Takuo Yonezawa";
};
talkara = {
email = "taito.horiuchi@relexsolutions.com";
github = "talkara";
githubId = 51232929;
name = "Taito Horiuchi";
};
talyz = {
email = "kim.lindberger@gmail.com";
github = "talyz";

View file

@ -0,0 +1,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 ];
};
}

View file

@ -5301,6 +5301,8 @@ in {
robotframework = callPackage ../development/python-modules/robotframework { };
robotframework-databaselibrary = callPackage ../development/python-modules/robotframework-databaselibrary { };
robotframework-requests = callPackage ../development/python-modules/robotframework-requests { };
robotframework-ride = callPackage ../development/python-modules/robotframework-ride { };