Skip to content

Commit

Permalink
linuxpy: init at 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kek5chen committed Nov 5, 2024
1 parent 779a848 commit e058061
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/python-modules/linuxpy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:

buildPythonPackage rec {
pname = "linuxpy";
version = "0.20.0";

disabled = pythonOlder "3.9";

src = fetchPypi {
inherit pname version;
sha256 = "sha256-mNWmzl52GEZUEL3q8cP59qxMduG1ijgsvGoD5ddSG94=";
};

pythonImportsCheck = [ "linuxpy" ];

meta = with lib; {
description = "Human friendly interface to linux subsystems using python";
homepage = "https://github.com/tiagocoutinho/linuxpy";
license = licenses.gpl3Only;
maintainers = with lib.maintainers; [ kekschen ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7350,6 +7350,8 @@ self: super: with self; {

linuxfd = callPackage ../development/python-modules/linuxfd { };

linuxpy = callPackage ../development/python-modules/linuxpy { };

lion-pytorch = callPackage ../development/python-modules/lion-pytorch { };

liquidctl = callPackage ../development/python-modules/liquidctl { };
Expand Down

0 comments on commit e058061

Please sign in to comment.