Merge pull request #211091 from fabaff/openerz-api-bump
python310Packages.openerz-api: 0.1.0 -> 0.2.0
This commit is contained in:
@@ -9,14 +9,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "openerz-api";
|
||||
version = "0.1.0";
|
||||
version = "0.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "misialq";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "10kxsmaz2rn26jijaxmdmhx8vjdz8hrhlrvd39gc8yvqbjwhi3nw";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-6q0mKWyTTlNJ/DCeAsck1meM5dQovYBcV2EqmjlABvc=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@@ -28,11 +30,19 @@ buildPythonPackage rec {
|
||||
testfixtures
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "openerz_api" ];
|
||||
pythonImportsCheck = [
|
||||
"openerz_api"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Assertion issue
|
||||
"test_sensor_make_api_request"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to interact with the OpenERZ API";
|
||||
homepage = "https://github.com/misialq/openerz-api";
|
||||
changelog = "https://github.com/misialq/openerz-api/releases/tag/v${version}";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user