mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
python311Packages.anel-pwrctrl-homeassistant: init at 0.0.1.dev2
This commit is contained in:
parent
b6c5ba387d
commit
2bf84ca052
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "anel-pwrctrl-homeassistant";
|
||||||
|
version = "0.0.1.dev2";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version;
|
||||||
|
pname = "anel_pwrctrl-homeassistant";
|
||||||
|
hash = "sha256-AcsnYD9CeGAarm5QdweUF6CUFwUywhfmU46NG8+Cm4s=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"anel_pwrctrl"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Discover and control ANEL NET-PwrCtrl devices";
|
||||||
|
homepage = "https://github.com/mweinelt/anel-pwrctrl";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [jamiemagee];
|
||||||
|
};
|
||||||
|
}
|
@ -512,6 +512,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
androguard = callPackage ../development/python-modules/androguard { };
|
androguard = callPackage ../development/python-modules/androguard { };
|
||||||
|
|
||||||
|
anel-pwrctrl-homeassistant = callPackage ../development/python-modules/anel-pwrctrl-homeassistant { };
|
||||||
|
|
||||||
angr = callPackage ../development/python-modules/angr { };
|
angr = callPackage ../development/python-modules/angr { };
|
||||||
|
|
||||||
angrcli = callPackage ../development/python-modules/angrcli {
|
angrcli = callPackage ../development/python-modules/angrcli {
|
||||||
|
Loading…
Reference in New Issue
Block a user