python311Packages.renson-endura-delta: init at 1.7.1
Module to interact with Renson endura delta https://github.com/jimmyd-be/Renson-endura-delta-library
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
, requests-mock
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "renson-endura-delta";
|
||||
version = "1.7.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jimmyd-be";
|
||||
repo = "Renson-endura-delta-library";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-ndk0qcRUWxUimNHg62UgeYK/MRKQd3e4JQDh9x8vFj8=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "'pytest-runner'" ""
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
requests-mock
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"renson_endura_delta"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to interact with Renson endura delta";
|
||||
homepage = "https://github.com/jimmyd-be/Renson-endura-delta-library";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -12312,6 +12312,8 @@ self: super: with self; {
|
||||
|
||||
rencode = callPackage ../development/python-modules/rencode { };
|
||||
|
||||
renson-endura-delta = callPackage ../development/python-modules/renson-endura-delta { };
|
||||
|
||||
reorder-python-imports = callPackage ../development/python-modules/reorder-python-imports { };
|
||||
|
||||
reolink = callPackage ../development/python-modules/reolink { };
|
||||
|
||||
Reference in New Issue
Block a user