-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python312Packages.lxns: init at 0.1.0
- Loading branch information
1 parent
5ecb91a
commit 7852b74
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
lib, | ||
buildPythonPackage, | ||
fetchFromGitHub, | ||
meson-python, | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "lxns"; | ||
version = "0.1.0"; | ||
pyproject = true; | ||
|
||
src = fetchFromGitHub { | ||
owner = "igo95862"; | ||
repo = "python-lxns"; | ||
rev = version; | ||
hash = "sha256-O7B2Do+b70i00HDxWgIV1yuNIx5lmpoZmHeA6yS2nLY="; | ||
}; | ||
|
||
build-system = [ | ||
meson-python | ||
]; | ||
|
||
pythonImportsCheck = [ | ||
"lxns" | ||
]; | ||
|
||
meta = { | ||
description = "Python library to control Linux kernel namespaces"; | ||
homepage = "https://github.com/igo95862/python-lxns"; | ||
changelog = "https://github.com/igo95862/python-lxns/blob/${src.rev}/CHANGELOG.md"; | ||
license = with lib.licenses; [ mit mpl20 ]; | ||
maintainers = with lib.maintainers; [ justdeeevin ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters