1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #146426 from fabaff/bump-pysma

python3Packages.pysma: 0.6.8 -> 0.6.9
This commit is contained in:
Fabian Affolter 2021-11-25 23:36:27 +01:00 committed by GitHub
commit 121f5ff1fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,28 +4,33 @@
, buildPythonPackage
, fetchPypi
, jmespath
, async-timeout
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysma";
version = "0.6.8";
version = "0.6.9";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "9490d72596db64d339aefee56940e058fddb52c2f0f5d5cce3c39ef94f39dbb9";
sha256 = "sha256-2ZU3UjDNo+fpnYK4WlYSu7XqkbpcK7Xz5cUKDABhwdk=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
attrs
jmespath
];
# pypi does not contain tests and GitHub archive not available
doCheck = false;
pythonImportsCheck = [ "pysma" ];
pythonImportsCheck = [
"pysma"
];
meta = with lib; {
description = "Python library for interacting with SMA Solar's WebConnect";