evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyi2cflash / default.nix
bloba0b47a94cecb8493a7a0a394f8a53734c36f3cd5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pyftdi,
6 }:
8 buildPythonPackage rec {
9   pname = "pyi2cflash";
10   version = "0.2.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1nkazgf7pajz7jym5rfy2df71lyfp4skxqbrg5ch0h4dwjdwllx1";
16   };
18   propagatedBuildInputs = [ pyftdi ];
20   # tests are not shipped with the PyPI source
21   doCheck = false;
23   pythonImportsCheck = [ "i2cflash" ];
25   meta = with lib; {
26     description = "I2C eeprom device drivers in Python";
27     homepage = "https://github.com/eblot/pyi2cflash";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ fab ];
30   };