504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
29 lines
660 B
Nix
29 lines
660 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, robotframework
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.3.1";
|
|
format = "setuptools";
|
|
pname = "robotframework-databaselibrary";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-C+shwpGbiA+YS8t9ApJEv6mYQVd3fVvY3qWzDF6vYqU=";
|
|
};
|
|
|
|
# unit tests are impure
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ robotframework ];
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|