summaryrefslogtreecommitdiff
path: root/awslocal.nix
diff options
context:
space:
mode:
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];
- };
-}