nixpkgs/pkgs/development/python-modules/pysml/default.nix
2023-12-25 18:00:59 +00:00

51 lines
913 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 ];
};
}