python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / pyspiflash / default.nix
blobeda0db8b767cb87a84bac03bf04beeaf101114d1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pyftdi,
6 }:
8 buildPythonPackage rec {
9   pname = "pyspiflash";
10   version = "0.6.3";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0ifnw1qm4nssb03af93qw6vpa92rmyc2hisw9m4043pm9ryqcmpc";
16   };
18   propagatedBuildInputs = [ pyftdi ];
20   # tests are not shipped with the PyPI source
21   doCheck = false;
23   pythonImportsCheck = [ "spiflash" ];
25   meta = with lib; {
26     description = "SPI data flash device drivers in Python";
27     homepage = "https://github.com/eblot/pyspiflash";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ fab ];
30   };