We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi friends, just sharing my shell.nix I'm using for my beancount project under NixOS. May be useful for someone.
{ pkgs ? import <nixpkgs> {} }: let autobean = pkgs.python3Packages.buildPythonPackage rec { pname = "autobean"; version = "0.2.2"; format = "pyproject"; src = pkgs.python3Packages.fetchPypi { inherit pname version; sha256 = "0jiady5nn7h190j195gj6x6vxmgvbxs2dmmlqa0bvsps4c1ps0ys"; }; nativeBuildInputs = with pkgs.python3Packages; [ pdm-pep517 setuptools wheel ]; propagatedBuildInputs = with pkgs.python3Packages; [ beancount python-dateutil pyyaml requests ]; pythonImportsCheck = [ "autobean" ]; doCheck = false; }; in pkgs.mkShell { packages = with pkgs; [ (python3.withPackages (ps: with ps; [ pip beancount fava autobean ])) ]; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi friends, just sharing my shell.nix I'm using for my beancount project under NixOS. May be useful for someone.
The text was updated successfully, but these errors were encountered: