Merge pull request #171225 from fabaff/pyeapi-py

python310Packages.pyeapi: fix Python 3.10 support
This commit is contained in:
Sandro
2022-05-04 14:27:20 +02:00
committed by GitHub
@@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, fetchFromGitHub
, fetchpatch
, mock
, netaddr
, pytestCheckHook
, mock
, pythonOlder
}:
buildPythonPackage rec {
@@ -12,8 +13,7 @@ buildPythonPackage rec {
version = "0.8.4";
format = "pyproject";
# https://github.com/arista-eosplus/pyeapi/issues/189
disabled = pythonAtLeast "3.10";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "arista-eosplus";
@@ -22,21 +22,49 @@ buildPythonPackage rec {
sha256 = "13chya6wix5jb82k67gr44bjx35gcdwz80nsvpv0gvzs6shn4d7b";
};
propagatedBuildInputs = [ netaddr ];
propagatedBuildInputs = [
netaddr
];
checkInputs = [
mock
pytestCheckHook
];
pytestFlagsArray = [ "test/unit" ];
patches = [
# Fix usage of collection, https://github.com/arista-eosplus/pyeapi/pull/223
(fetchpatch {
name = "fix-collection-usage.patch";
url = "https://github.com/arista-eosplus/pyeapi/commit/81754f57eb095703cc474f527a0915360af76f68.patch";
sha256 = "sha256-ZNBTPRNmXCFVJeRAJxzIHmCOXZiGwU6t4ekSupU3BX8=";
})
(fetchpatch {
name = "fix-collection-usage-2.patch";
url = "https://github.com/arista-eosplus/pyeapi/commit/cc9c584e4a3167e3c1624cccb6bc0d9c9bcdbc1c.patch";
sha256 = "sha256-EY0i1Skm1llEQAAzvrb2yelhhLBkqKAFJB5ObAIxAYo=";
excludes = [
".github/workflows/ci.yml"
];
})
(fetchpatch {
name = "fix-collection-usage-3.patch";
url = "https://github.com/arista-eosplus/pyeapi/commit/dc35ab076687ea71665ae9524480b05a4e893909.patch";
sha256 = "sha256-xPaYULCPTxiQGB9Im/qLet+XebW9wq+TAfrxcgQxcoE=";
})
];
pythonImportsCheck = [ "pyeapi" ];
pytestFlagsArray = [
"test/unit"
];
pythonImportsCheck = [
"pyeapi"
];
meta = with lib; {
description = "Client for Arista eAPI";
homepage = "https://github.com/arista-eosplus/pyeapi";
license = licenses.bsd3;
maintainers = [ maintainers.astro ];
maintainers = with maintainers; [ astro ];
};
}