12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "arista-eosplus";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-eGNBQSnYMC9YVCw5mBRH6XRq139AcqFm6HnO2FUzLEE=";
26 build-system = [ setuptools ];
28 dependencies = [ netaddr ];
35 pytestFlagsArray = [ "test/unit" ];
37 pythonImportsCheck = [ "pyeapi" ];
40 description = "Client for Arista eAPI";
41 homepage = "https://github.com/arista-eosplus/pyeapi";
42 changelog = "https://github.com/arista-eosplus/pyeapi/releases/tag/v${version}";
43 license = licenses.bsd3;
44 maintainers = with maintainers; [ astro ];