depot/third_party/nixpkgs/pkgs/development/python-modules/pysml/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
912 B
Nix

{
lib,
aiohttp,
async-timeout,
bitstring,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pyserial-asyncio,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pysml";
version = "0.1.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mtdcr";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-TLIpc0bVx1As2oLyYD+BBMalwJiKdvBCcrd1tUNyh6Y=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
async-timeout
bitstring
pyserial-asyncio
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "sml" ];
meta = with lib; {
description = "Python library for EDL21 smart meters using Smart Message Language (SML)";
homepage = "https://github.com/mtdcr/pysml";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}