Commit a5792e0b authored by Christian Pinedo's avatar Christian Pinedo
Browse files

python3Packages.curlify: init at 2.2.1

parent e59a84aa
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchFromGitHub, requests }:

buildPythonPackage {
  pname = "curlify";
  version = "2.2.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "ofw";
    repo = "curlify";
    rev = "b914625b12f9b05c39f305b47ebd0d1f061af24d";
    hash = "sha256-yDHmH35TtQDJB0na1V98RtBuVHX5TmKC72hzzs1DQK8=";
  };

  propagatedBuildInputs = [
    requests
  ];

  meta = with lib; {
    description = "Convert python requests request object to cURL command";
    homepage = "https://github.com/ofw/curlify";
    license = licenses.mit;
    maintainers = with maintainers; [ chrpinedo ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2370,6 +2370,8 @@ self: super: with self; {

  curio = callPackage ../development/python-modules/curio { };

  curlify = callPackage ../development/python-modules/curlify { };

  curtsies = callPackage ../development/python-modules/curtsies { };

  curve25519-donna = callPackage ../development/python-modules/curve25519-donna { };