nixpkgs/pkgs/development/python-modules/pypca/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

38 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 ];
};
}