Merge pull request #42421 from bandresen/python-periphery

pythonPackages.python-periphery: init at 1.1.1
This commit is contained in:
Frederik Rietdijk 2018-06-23 13:53:29 +02:00 committed by GitHub
commit 1106d872ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "python-periphery";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "fe8f351934edce72cd919b4eb070878ebff551db5e21aea61e0f446101f0a79f";
};
# Some tests require physical probing and additional physical setup
doCheck = false;
meta = {
homepage = https://github.com/vsergeev/python-periphery;
description = "Linux Peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) with Python 2 & 3";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bandresen ];
};
}

View File

@ -434,6 +434,8 @@ in {
then ../development/python-modules/python3-openid
else ../development/python-modules/python-openid) { };
python-periphery = callPackage ../development/python-modules/python-periphery { };
python-sql = callPackage ../development/python-modules/python-sql { };
python-stdnum = callPackage ../development/python-modules/python-stdnum { };