python310Packages.pyobihai: 1.3.2 -> 1.4.0

This commit is contained in:
Fabian Affolter 2023-03-07 21:50:21 +01:00
parent ecfff018eb
commit 8312cc0a1f

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, defusedxml
, fetchPypi
, pythonOlder
, requests
@ -7,7 +8,7 @@
buildPythonPackage rec {
pname = "pyobihai";
version = "1.3.2";
version = "1.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -15,10 +16,11 @@ buildPythonPackage rec {
# GitHub release, https://github.com/dshokouhi/pyobihai/issues/10
src = fetchPypi {
inherit pname version;
hash = "sha256-zhsnJyhXlugK0nJ7FJZZcrq2VDQt1a9uCgsJAIABZ28=";
hash = "sha256-P6tKpssey59SdjS/QWpuv1UUagjR7RVAl6rse/O79mg=";
};
propagatedBuildInputs = [
defusedxml
requests
];