3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #207656 from fabaff/opensensemap-api-bump

python310Packages.opensensemap-api: 0.2.0 -> 0.3.0
This commit is contained in:
Fabian Affolter 2022-12-25 15:33:47 +01:00 committed by GitHub
commit e60eef9bda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "opensensemap-api";
version = "0.2.0";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-KSukSPpSbfbEEqTq4zqqo8OT7ptdPrGy2QyQYjErQWI=";
hash = "sha256-lz2G7vXUadhTFgfHpIq9kHfojf+iytjitFZZ7rgqeO8=";
};
propagatedBuildInputs = [
@ -23,7 +23,7 @@ buildPythonPackage rec {
async-timeout
];
# no tests are present
# Module has no tests
doCheck = false;
pythonImportsCheck = [
@ -37,6 +37,7 @@ buildPythonPackage rec {
available information from the sensor can be retrieved.
'';
homepage = "https://github.com/home-assistant-ecosystem/python-opensensemap-api";
changelog = "https://github.com/home-assistant-ecosystem/python-opensensemap-api/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};