python3.pkgs.smbus-cffi: init at 0.5.1

This commit is contained in:
Jörg Thalheim 2020-10-24 21:15:35 +02:00
parent 72c424a968
commit d1dc6f61f9
No known key found for this signature in database
GPG key ID: 003F2096411B5F92
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, cffi
, pytestCheckHook
, pyserial
, fetchpatch
}:
buildPythonPackage rec {
pname = "smbus-cffi";
version = "0.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "fb4195aaabfc01586863f60d3190b5cb1bf8f12622fd597e23e48768dad6bde8";
};
patches = [
# https://github.com/bivab/smbus-cffi/pull/24
(fetchpatch {
url = "https://github.com/bivab/smbus-cffi/commit/ba79ae174a9d84e767d95f165c43ee212b1bbb92.patch";
sha256 = "sha256-WtRuK5y6fWDEhm0Xy5XqS5yCkn7vXXYtjlOjS90gla4=";
})
];
propagatedBuildInputs = [ cffi ];
installCheckPhase = ''
# we want to import the installed module that also contains the compiled library
rm -rf smbus
runHook pytestCheckPhase
'';
# requires hardware access
pytestFlagsArray = [ "--ignore=test/test_smbus_integration.py" ];
checkInputs = [ pytestCheckHook pyserial ];
meta = with lib; {
description = "Python module for SMBus access through Linux I2C /dev interface";
homepage = "https://github.com/bivab/smbus-cffi";
license = licenses.gpl2;
maintainers = with maintainers; [ mic92 ];
};
}

View file

@ -6664,6 +6664,8 @@ in {
smartypants = callPackage ../development/python-modules/smartypants { };
smbus-cffi = callPackage ../development/python-modules/smbus-cffi { };
smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
smmap = callPackage ../development/python-modules/smmap { };