mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
python3Packages.enochecker-core: init at 0.10.0
This commit is contained in:
parent
08a1cfec3c
commit
70ef85e778
35
pkgs/development/python-modules/enochecker-core/default.nix
Normal file
35
pkgs/development/python-modules/enochecker-core/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user