11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-zpaKUEg78vzvuTtVauCUUt0U92NXVyNhEfgKVrRzdnM=";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [
32 # Tests require credentials
35 pythonImportsCheck = [ "pyeconet" ];
38 description = "Python interface to the EcoNet API";
39 homepage = "https://github.com/w1ll1am23/pyeconet";
40 changelog = "https://github.com/w1ll1am23/pyeconet/releases/tag/v${version}";
41 license = with licenses; [ mit ];
42 maintainers = with maintainers; [ fab ];