summaryrefslogtreecommitdiff
path: root/awslocal.nix
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2025-06-23 16:16:45 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2025-06-26 15:54:29 +0200
commit199f5268ddeec261f5cba352d741f64517eb68e5 (patch)
tree6a70168ba789a550b02972c35043dbb10c7ed418 /awslocal.nix
parent9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf (diff)
downloadhome-manager-199f5268ddeec261f5cba352d741f64517eb68e5.tar.gz
home-manager-199f5268ddeec261f5cba352d741f64517eb68e5.tar.bz2
home-manager-199f5268ddeec261f5cba352d741f64517eb68e5.zip
Add 1 git-crypt collaborator
New collaborators: 14C4CC6F Gabriel Arakaki Giovanini <mail@gabrielgio.me>
Diffstat (limited to 'awslocal.nix')
-rw-r--r--awslocal.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/awslocal.nix b/awslocal.nix
deleted file mode 100644
index 1968b08..0000000
--- a/awslocal.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{
- lib,
- buildPythonPackage,
- fetchPypi,
- # build-system
- setuptools,
- setuptools-scm,
- # dependencies
- attrs,
- pluggy,
- py,
- six,
- # tests
- hypothesis,
-}:
-buildPythonPackage rec {
- pname = "awscli-local";
- version = "3.3.1";
- pyproject = true;
-
- src = fetchPypi {
- inherit pname version;
- hash = "sha256-z4Q23FnYaVNG/NOrKW3kZCXsqwDWQJbOvnn7Ueyy65M=";
- };
-
- postPatch = ''
- # don't test bash builtins
- rm testing/test_argcomplete.py
- '';
-
- build-system = [
- setuptools
- setuptools-scm
- ];
-
- dependencies = [
- attrs
- py
- setuptools
- six
- pluggy
- ];
-
- nativeCheckInputs = [
- hypothesis
- ];
-
- meta = {
- changelog = "https://github.com/pytest-dev/pytest/releases/tag/${version}";
- description = "Framework for writing tests";
- homepage = "https://github.com/pytest-dev/pytest";
- license = lib.licenses.mit;
- maintainers = with lib.maintainers; [domenkozar lovek323 madjar lsix];
- };
-}