Merge pull request #294370 from fabaff/bless-bump

python311Packages.bless: 0.2.5 -> 0.2.6
This commit is contained in:
Mario Rodas
2024-03-08 20:04:24 -05:00
committed by GitHub
@@ -5,24 +5,34 @@
, dbus-next
, fetchFromGitHub
, numpy
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "bless";
version = "0.2.5";
format = "setuptools";
version = "0.2.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "kevincar";
repo = pname;
repo = "bless";
rev = "refs/tags/v${version}";
hash = "sha256-+rnMLqNfhIJASCKkIfOKpVil3S/d8BcMxnLHmdOcRIY=";
hash = "sha256-dAdA+d75iE6v6t4mfgvwhRsIARLW+IqCGmaMABaDlZg=";
};
postPatch = ''
sed -i "/pysetupdi/d" setup.py
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
bleak
dbus-next
@@ -31,6 +41,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
aioconsole
numpy
pytest-asyncio
pytestCheckHook
];