2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
requests,
|
|
|
|
}:
|
2023-10-09 19:29:22 +00:00
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
pname = "curlify";
|
|
|
|
version = "2.2.1";
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ofw";
|
|
|
|
repo = "curlify";
|
|
|
|
rev = "b914625b12f9b05c39f305b47ebd0d1f061af24d";
|
|
|
|
hash = "sha256-yDHmH35TtQDJB0na1V98RtBuVHX5TmKC72hzzs1DQK8=";
|
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [ requests ];
|
2023-10-09 19:29:22 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|