e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
37 lines
738 B
Nix
37 lines
738 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, robotframework
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "robotframework-databaselibrary";
|
|
version = "1.4.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-/n4+xA/eLrcVEwlWyLQLrkX5waYaJKRkphwT22b7hTU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
robotframework
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
robotframework
|
|
];
|
|
|
|
# unit tests are impure
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|