depot/third_party/nixpkgs/pkgs/development/python-modules/pypca/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

37 lines
736 B
Nix

{ lib
, buildPythonPackage
, colorlog
, fetchPypi
, pythonOlder
, pyserial
}:
buildPythonPackage rec {
pname = "pypca";
version = "0.0.13";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "0y0p2rm22x21mykipiv42fjc79b0969qsbhk3cqkrdnqwh5psbdl";
};
propagatedBuildInputs = [
colorlog
pyserial
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pypca" ];
meta = with lib; {
description = "Python library for interacting with the PCA 301 smart plugs";
mainProgram = "pypca";
homepage = "https://github.com/majuss/pypca";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}