Update pipenv, add ITG options, py311 from nixos23_05
This commit is contained in:
@@ -41,7 +41,6 @@
|
||||
gh
|
||||
git
|
||||
gnupatch
|
||||
gregpy
|
||||
hms
|
||||
htop
|
||||
inetutils
|
||||
|
||||
@@ -1,10 +1,21 @@
|
||||
{ pkgs, lib, inputs, ...}:
|
||||
|
||||
{
|
||||
let
|
||||
py = pkgs.nix23_05.python311.withPackages ( p: with p; [
|
||||
django
|
||||
djangorestframework
|
||||
django-rapyd-modernauth
|
||||
environs
|
||||
#itg-django-utils
|
||||
mysqlclient
|
||||
ruamel-yaml
|
||||
tox
|
||||
]);
|
||||
in {
|
||||
imports = [
|
||||
../../vscodium.nix
|
||||
];
|
||||
|
||||
greg.pypackage = py;
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
aacs
|
||||
@@ -13,7 +24,7 @@
|
||||
direnv
|
||||
home-manager
|
||||
insomnia
|
||||
pipenv
|
||||
pipenv-ivr
|
||||
];
|
||||
file.".pip/pip.conf".text = (lib.strings.concatStringsSep "\n" [
|
||||
"[global]"
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
{
|
||||
imports = [
|
||||
./gnome.nix
|
||||
./python.nix
|
||||
./xonsh.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
options.greg.pypackage = lib.mkOption {
|
||||
description = "Enable Gnome support and settings";
|
||||
type = lib.types.package;
|
||||
default = pkgs.gregpy;
|
||||
};
|
||||
|
||||
config.home.packages = [ config.greg.pypackage ];
|
||||
}
|
||||
Reference in New Issue
Block a user