depot/third_party/nixpkgs/pkgs/development/python-modules/canopen/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

42 lines
867 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
python-can,
canmatrix,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "canopen";
version = "2.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-eSCEqTwTjVsqQG3dLU61ziCPA72P2mD4GtK7jVbGuCc=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
python-can
canmatrix
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "canopen" ];
meta = with lib; {
description = "CANopen stack implementation";
homepage = "https://github.com/christiansandberg/canopen/";
changelog = "https://github.com/christiansandberg/canopen/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ sorki ];
};
}