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

python3Packages.wiffi: 1.0.1 -> 1.1.0

+11 -4
+11 -4
pkgs/development/python-modules/wiffi/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "wiffi"; 10 - version = "1.0.1"; 10 + version = "1.1.0"; 11 + format = "setuptools"; 12 + 11 13 disabled = pythonOlder "3.6"; 12 14 13 15 src = fetchFromGitHub { 14 16 owner = "mampfes"; 15 17 repo = "python-wiffi"; 16 18 rev = version; 17 - sha256 = "1bsx8dcmbkajh7hdgxg6wdnyxz4bfnd45piiy3yzyvszfdyvxw0f"; 19 + sha256 = "sha256-uB4M3etW1DCE//V2pcmsLZbORmrL00pbPADMQD5y3CY="; 18 20 }; 19 21 20 - propagatedBuildInputs = [ aiohttp ]; 22 + propagatedBuildInputs = [ 23 + aiohttp 24 + ]; 21 25 22 26 # Project has no tests 23 27 doCheck = false; 24 - pythonImportsCheck = [ "wiffi" ]; 28 + 29 + pythonImportsCheck = [ 30 + "wiffi" 31 + ]; 25 32 26 33 meta = with lib; { 27 34 description = "Python module to interface with STALL WIFFI devices";