Merge pull request #108220 from fabaff/pyspiflash

python3Packages.pyspiflash: init at 0.6.3
This commit is contained in:
Pavol Rusnak 2021-01-02 16:47:45 +01:00 committed by GitHub
commit 2d770a4383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyftdi
}:
buildPythonPackage rec {
pname = "pyspiflash";
version = "0.6.3";
src = fetchPypi {
inherit pname version;
sha256 = "0ifnw1qm4nssb03af93qw6vpa92rmyc2hisw9m4043pm9ryqcmpc";
};
propagatedBuildInputs = [
pyftdi
];
# tests are not shipped with the PyPI source
doCheck = false;
pythonImportsCheck = [ "spiflash" ];
meta = with lib; {
description = "SPI data flash device drivers in Python";
homepage = "https://github.com/eblot/pyspiflash";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5696,6 +5696,8 @@ in {
pyspice = callPackage ../development/python-modules/pyspice { }; pyspice = callPackage ../development/python-modules/pyspice { };
pyspiflash = callPackage ../development/python-modules/pyspiflash { };
pyspinel = callPackage ../development/python-modules/pyspinel { }; pyspinel = callPackage ../development/python-modules/pyspinel { };
pyspotify = callPackage ../development/python-modules/pyspotify { }; pyspotify = callPackage ../development/python-modules/pyspotify { };