Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyfreedompro / default.nix
blob9a18a3f8499435c78557e384847dff4df3e46e34
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , aiohttp
6 }:
8 buildPythonPackage rec {
9   pname = "pyfreedompro";
10   version = "1.1.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "92812070a0c74761fa0c8cac98ddbe0bca781c8de80e2b08dbd04492e831c172";
18   };
20   propagatedBuildInputs = [
21     aiohttp
22   ];
24   # upstream has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "aiohttp" ];
29   meta = with lib; {
30     description = "Python library for Freedompro API";
31     homepage = "https://github.com/stefano055415/pyfreedompro";
32     license = licenses.mit;
33     maintainers = with maintainers; [ dotlambda ];
34   };