2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-23 06:03:40 +00:00

python3Packages.pyhaversion: 21.10.0 -> 21.11.1

This commit is contained in:
Fabian Affolter 2021-11-24 09:24:48 +01:00
parent 40c3bc3b08
commit 4537204529

View File

@ -1,7 +1,6 @@
{ lib
, aiohttp
, aresponses
, async-timeout
, awesomeversion
, buildPythonPackage
, fetchFromGitHub
@ -12,21 +11,20 @@
buildPythonPackage rec {
pname = "pyhaversion";
version = "21.10.0";
version = "21.11.1";
format = "setuptools";
# Only 3.8.0 and beyond are supported
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ludeeus";
repo = pname;
rev = version;
sha256 = "sha256-EvVkewFgkfYL6BjmJ/IWeuCyR+0R0ZxI35i9sxKcqxo=";
sha256 = "sha256-wh6NJRDgOrEHYEN3QlC4lOZHPnPeiPCJFF1xLoixQ14=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
awesomeversion
];
@ -36,7 +34,16 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "pyhaversion" ];
postPatch = ''
# Upstream doesn't set a version for the tagged releases
substituteInPlace setup.py \
--replace "main" ${version}
'';
pythonImportsCheck = [
"pyhaversion"
];
meta = with lib; {
description = "Python module to the newest version number of Home Assistant";