Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wiffi / default.nix
blob208265ba9a3bf924f950fdda334c189142c75252
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "wiffi";
10   version = "1.1.2";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchFromGitHub {
16     owner = "mampfes";
17     repo = "python-wiffi";
18     rev = "refs/tags/${version}";
19     hash = "sha256-pnbzJxq8K947Yg54LysPPho6IRKf0cc+szTETgyzFao=";
20   };
22   propagatedBuildInputs = [
23     aiohttp
24   ];
26   # Project has no tests
27   doCheck = false;
29   pythonImportsCheck = [
30     "wiffi"
31   ];
33   meta = with lib; {
34     description = "Python module to interface with STALL WIFFI devices";
35     homepage = "https://github.com/mampfes/python-wiffi";
36     changelog = "https://github.com/mampfes/python-wiffi/blob/${version}/HISTORY.md";
37     license = with licenses; [ mit ];
38     maintainers = with maintainers; [ fab ];
39   };