mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.python-family-hub-local: init at 0.0.2
This commit is contained in:
parent
603b07bfb2
commit
ae51dd5b70
@ -0,0 +1,43 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, aiohttp
|
||||
, async-timeout
|
||||
, pillow
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-family-hub-local";
|
||||
version = "0.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
hash = "sha256-bbOBlUJ4g+HOcJihEBAz3lsHR9Gn07z8st14FRFeJbc=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
async-timeout
|
||||
pillow
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyfamilyhublocal"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to accesse information from Samsung FamilyHub fridges locally";
|
||||
homepage = "https://github.com/Klathmon/python-family-hub-local";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -8138,6 +8138,8 @@ in {
|
||||
|
||||
python-editor = callPackage ../development/python-modules/python-editor { };
|
||||
|
||||
python-family-hub-local = callPackage ../development/python-modules/python-family-hub-local { };
|
||||
|
||||
python-fsutil = callPackage ../development/python-modules/python-fsutil { };
|
||||
|
||||
pythonefl = callPackage ../development/python-modules/python-efl { };
|
||||
|
Loading…
Reference in New Issue
Block a user