python3Packages.enochecker-core: init at 0.10.0

This commit is contained in:
Matthis Gördel 2023-06-14 13:41:12 +02:00
parent 08a1cfec3c
commit 70ef85e778
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "enochecker-core";
version = "0.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version;
pname = "enochecker_core";
hash = "sha256-N41p2XRCp55rcPXLpA4rPIARsva/dQzK8qafjzXtavI=";
};
pythonImportsCheck = [
"enochecker_core"
];
# no tests upstream
doCheck = false;
meta = with lib; {
description = "Base library for enochecker libs";
homepage = "https://github.com/enowars/enochecker_core";
changelog = "https://github.com/enowars/enochecker_core/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fwc ];
};
}

View File

@ -3242,6 +3242,8 @@ self: super: with self; {
enocean = callPackage ../development/python-modules/enocean { };
enochecker-core = callPackage ../development/python-modules/enochecker-core { };
enrich = callPackage ../development/python-modules/enrich { };
entrance = callPackage ../development/python-modules/entrance {