mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
628 B
Nix
33 lines
628 B
Nix
{ lib
|
|
, paho-mqtt
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, aiohttp
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyeconet";
|
|
version = "0.1.14";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-x0mkC2k65VrDhv7UavgDUuRWIQoAJMDtA7jNXNUJuVg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
paho-mqtt
|
|
aiohttp
|
|
];
|
|
|
|
# Tests require credentials
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "pyeconet" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface to the EcoNet API";
|
|
homepage = "https://github.com/w1ll1am23/pyeconet";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|