Daniel Murcia
Daniel Murcia
Add support for a more strict mypy configuration file (i.e. enable all checks). I suggest to mark explicitly each config field, even if the default value is the desired one...
### Problem to solve compute on aws batch is written on python but there is no `direnv` that automatically enters the development env. ### Intended users ### Permissions and Security...
### Problem to solve When entering a `direnv` environment is often necessary to adjust the path of the python interpreter to correctly setup vscode. ### Intended users ### Permissions and...
### Problem to solve `makePythonPypiEnvironment` is a funtion that returns a `SourceAble` derivation rather than a `PythonPkgDerivation`. This makes that they cannot be integrated together, forcing to rewrite `makePythonPypiEnvironment` dependencies...
`m . /lintPython/module/***` fails with:  This seems due to django added dependency to pylint plugins. [see this post](https://www.appsloveworld.com/django/100/101/python-click-project-django-is-not-available-on-the-pythonpath-error).
`compute-on-aws-batch` only supports attempts parameter for a batch job. Add conditions of retry through evaluateOnExit input ([aws docs](https://docs.aws.amazon.com/batch/latest/APIReference/API_RetryStrategy.html), [aws cli](https://docs.aws.amazon.com/cli/latest/reference/batch/submit-job.html))
Hi, I am using NixOS and want to use `win2xcur`. The installation step with `pip` is not a very nix-way of installing things, so a nix flake build support will...
- support build, install and dev env with nix Closes #20
Hi, I want to setup a development environment for `win2xcur` via `nix`. Commonly it should be using `nix develop` over the `win2xcur` nix package, however I would like to enable...
The current scoping rules for type variables seems to deny type annotations over generic functions. ## The issue define two functions as follows: ``` def fx_1(f: Callable[[bool], int]) -> int:...