From 06c6dae0756f1023bbb225c1d70dc5e92dc31808 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sun, 24 Nov 2024 23:44:30 +0100 Subject: pkgs/bookwyrm: 0.7.2 → 0.7.4 passes the basic smoke test, nothing else done (doing this to distract myself & since people expressed interest in maybe trying to run an instance again). --- pkgs/python/s3-tar.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/python/s3-tar.nix (limited to 'pkgs/python/s3-tar.nix') diff --git a/pkgs/python/s3-tar.nix b/pkgs/python/s3-tar.nix new file mode 100644 index 0000000..8778bc7 --- /dev/null +++ b/pkgs/python/s3-tar.nix @@ -0,0 +1,21 @@ +{ lib +, buildPythonPackage +, fetchPypi +, python +, boto3 +}: + +buildPythonPackage rec { + pname = "s3-tar"; + version = "0.1.13"; + format = "setuptools"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-0LPuK/NYp+mVFUlrlAdrbrsT8kM6WhVfg5Jb1LW9wgU="; + }; + + propagatedBuildInputs = [ + boto3 + ]; +} -- cgit v1.2.3