1{ lib 2, buildPythonPackage 3, fetchPypi 4, robotframework 5}: 6 7buildPythonPackage rec { 8 version = "1.3.1"; 9 pname = "robotframework-databaselibrary"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "sha256-C+shwpGbiA+YS8t9ApJEv6mYQVd3fVvY3qWzDF6vYqU="; 14 }; 15 16 # unit tests are impure 17 doCheck = false; 18 19 propagatedBuildInputs = [ robotframework ]; 20 21 meta = with lib; { 22 description = "Database Library contains utilities meant for Robot Framework"; 23 homepage = "https://github.com/franz-see/Robotframework-Database-Library"; 24 license = licenses.asl20; 25 maintainers = with maintainers; [ talkara ]; 26 }; 27 28}