nixpkgs/pkgs/development/python-modules/pyi2cflash/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

33 lines
644 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pyftdi
}:
buildPythonPackage rec {
pname = "pyi2cflash";
version = "0.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1nkazgf7pajz7jym5rfy2df71lyfp4skxqbrg5ch0h4dwjdwllx1";
};
propagatedBuildInputs = [
pyftdi
];
# tests are not shipped with the PyPI source
doCheck = false;
pythonImportsCheck = [ "i2cflash" ];
meta = with lib; {
description = "I2C eeprom device drivers in Python";
homepage = "https://github.com/eblot/pyi2cflash";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}