python3Packages.pysensibo: 1.0.24 -> 1.0.25

Switch to pypi fetcher, because the git sources are not tagged and I
couldn't find a working commit.
This commit is contained in:
Martin Weinelt 2023-02-02 01:43:38 +01:00
parent 5d27d7008c
commit 23025f98ec
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,22 +1,20 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysensibo";
version = "1.0.24";
version = "1.0.25";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "andrey-git";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-lLorBf4HjynkTyLfKGcxEpSzyCawjKDej/HFtHl/Ar8=";
src = fetchPypi {
inherit pname version;
hash = "sha256-AZpqV/CQ8TLKjaee9b0Zbu6WfnGNenKIvot+TTTSikg=";
};
propagatedBuildInputs = [