depot/third_party/nixpkgs/pkgs/development/python-modules/lc7001/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

44 lines
767 B
Nix

{ lib
, buildPythonPackage
, cryptography
, fetchPypi
, pythonOlder
, poetry-core
, setuptools
}:
buildPythonPackage rec {
pname = "lc7001";
version = "1.0.5";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-I4I3vwW1kJsgLFPMGpe9hkD3iEeC3AqI4pCi6SCWPx4=";
};
nativeBuildInputs = [
poetry-core
setuptools
];
propagatedBuildInputs = [
cryptography
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"lc7001"
];
meta = with lib; {
description = "Python module for interacting with Legrand LC7001";
homepage = "https://github.com/rtyle/lc7001";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}