nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.adafruit-platformdetect: 3.17.1 -> 3.17.2

+10 -4
+10 -4
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "adafruit-platformdetect"; 9 - version = "3.17.1"; 9 + version = "3.17.2"; 10 + format = "setuptools"; 10 11 11 12 src = fetchPypi { 12 13 pname = "Adafruit-PlatformDetect"; 13 14 inherit version; 14 - sha256 = "sha256-M+0q1u/ZcAg2Pii/B2n0v+rw/zIAjeVej/VThi9NLwI="; 15 + sha256 = "sha256-IA846zNFmBqSUc0oXJ0eA5wj6PzQ28jxO22z5WNOT24="; 15 16 }; 16 17 17 - nativeBuildInputs = [ setuptools-scm ]; 18 + nativeBuildInputs = [ 19 + setuptools-scm 20 + ]; 18 21 19 22 # Project has not published tests yet 20 23 doCheck = false; 21 - pythonImportsCheck = [ "adafruit_platformdetect" ]; 24 + 25 + pythonImportsCheck = [ 26 + "adafruit_platformdetect" 27 + ]; 22 28 23 29 meta = with lib; { 24 30 description = "Platform detection for use by Adafruit libraries";