This commit is contained in:
Jeffrey C. Ollie 2023-02-11 10:22:58 -06:00
parent a98b8dcc4b
commit f5dc24c0cb
Signed by: jeff
GPG key ID: 6F86035A6D97044E
2 changed files with 6 additions and 5 deletions

View file

@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1673056779, "lastModified": 1675918889,
"narHash": "sha256-+Mjz9puicCHhik7QQxm9SviN0T8cLznIXqMTAoau4dA=", "narHash": "sha256-hy7re4F9AEQqwZxubct7jBRos6md26bmxnCjxf5utJA=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8c03897e2622f4bc8060370736df431d5942522c", "rev": "49efda9011e8cdcd6c1aad30384cb1dc230c82fe",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -21,12 +21,13 @@
devShells.default = devShells.default =
let let
python = pkgs.python310.withPackages (ps: with ps; [ python = pkgs.python310.withPackages (ps: with ps; [
poetry poetry-core
]); ]);
in in
pkgs.mkShell { pkgs.mkShell {
buildInputs = [ buildInputs = [
python #python
pkgs.poetry
pkgs.hidapi pkgs.hidapi
pkgs.libusb1 pkgs.libusb1
]; ];