depot/third_party/nixpkgs/pkgs/development/python-modules/robotframework-requests/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 lines
636 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, unittest2
, robotframework
, lxml
, requests
}:
buildPythonPackage rec {
version = "0.6.3";
pname = "robotframework-requests";
src = fetchPypi {
inherit pname version;
sha256 = "f29844eee373775fd590b80f80a7d5a4325094a4f0a3c48e972d24712dbd2ce4";
};
buildInputs = [ unittest2 ];
propagatedBuildInputs = [ robotframework lxml requests ];
meta = with stdenv.lib; {
description = "Robot Framework keyword library wrapper around the HTTP client library requests";
homepage = "https://github.com/bulkan/robotframework-requests";
license = licenses.mit;
};
}