Skip to content
New issue

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

chore: update nix packages and python version #59

Merged
merged 4 commits into from
Dec 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
swtich to python3Packages instead
  • Loading branch information
muhchaudhary committed Dec 6, 2024
commit 56384294aad677d3c4bb146bb3ea7ff5cde5c674
9 changes: 4 additions & 5 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
lib,
python311Packages,
python3Packages,
gtk3,
gtk-layer-shell,
cairo,
Expand All @@ -10,8 +10,7 @@
cinnamon,
gnome,
}:

python311Packages.buildPythonPackage {
python3Packages.buildPythonPackage {
pname = "python-fabric";
version = "0.0.1";
pyproject = true;
Expand All @@ -29,7 +28,7 @@ python311Packages.buildPythonPackage {
gnome.gnome-bluetooth
];

dependencies = with python311Packages; [
dependencies = with python3Packages; [
setuptools
click
pycairo
Expand All @@ -46,6 +45,6 @@ python311Packages.buildPythonPackage {
'';
homepage = "https://github.com/Fabric-Development/fabric";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
maintainers = with lib.maintainers; [];
};
}