Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyi2cflash / default.nix
blob7a8a0ac595a6a13c6371a404a53d24bfa9c29866
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyftdi
5 }:
7 buildPythonPackage rec {
8   pname = "pyi2cflash";
9   version = "0.2.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1nkazgf7pajz7jym5rfy2df71lyfp4skxqbrg5ch0h4dwjdwllx1";
15   };
17   propagatedBuildInputs = [
18     pyftdi
19   ];
21   # tests are not shipped with the PyPI source
22   doCheck = false;
24   pythonImportsCheck = [ "i2cflash" ];
26   meta = with lib; {
27     description = "I2C eeprom device drivers in Python";
28     homepage = "https://github.com/eblot/pyi2cflash";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };