0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge pull request #280576 from fabaff/nexia-bump

python311Packages.nexia: 2.0.7 -> 2.0.8
This commit is contained in:
Mario Rodas 2024-01-13 06:56:37 -05:00 committed by GitHub
commit 1fdeb11b11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,22 +8,32 @@
, pythonOlder , pythonOlder
, requests , requests
, requests-mock , requests-mock
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "nexia"; pname = "nexia";
version = "2.0.7"; version = "2.0.8";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bdraco"; owner = "bdraco";
repo = pname; repo = "nexia";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-1uCmlFkha5oaNm5N0/8402ulBr7fNRUbDDASECfN9r8="; hash = "sha256-dWFARVmGGQxyRhaOrDoAjwXTQNKBFHY2/swFVdEOsmo=";
}; };
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner",' ""
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
orjson orjson
requests requests
@ -36,11 +46,6 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner",' ""
'';
pythonImportsCheck = [ pythonImportsCheck = [
"nexia" "nexia"
]; ];
@ -48,6 +53,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python module for Nexia thermostats"; description = "Python module for Nexia thermostats";
homepage = "https://github.com/bdraco/nexia"; homepage = "https://github.com/bdraco/nexia";
changelog = "https://github.com/bdraco/nexia/releases/tag/${version}";
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };