2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
28 lines
635 B
Nix
28 lines
635 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, robotframework
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.3.1";
|
|
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 ];
|
|
};
|
|
|
|
}
|