mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
33 lines
710 B
Nix
33 lines
710 B
Nix
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
|
, requests, zeroconf, wakeonlan
|
|
, python }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "openwebifpy";
|
|
version = "3.1.1";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0zqa74i54ww9qjciiv8s58mxbs6vxq06cq5k4pxfarc0l75l4gh2";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
zeroconf
|
|
wakeonlan
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} setup.py test
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Provides a python interface to interact with a device running OpenWebIf";
|
|
homepage = "https://openwebifpy.readthedocs.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|
|
|