Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / facebook-sdk / default.nix
blob2789829da57a4b5c2fcfe6a5e4628ac6e14b02e1
1 { pkgs
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , python
6 }:
8 buildPythonPackage rec {
9   pname = "facebook-sdk";
10   version = "3.1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "138grz0n6plzdqgi4h6hhszf58bsvx9v76cwj51g1nd3kvkd5g6a";
16   };
18   propagatedBuildInputs = [ requests ];
20   # checks require network
21   doCheck = false;
23   checkPhase = ''
24     ${python.interpreter} test/test_facebook.py
25   '';
27   meta = with pkgs.lib; {
28     description = "Client library that supports the Facebook Graph API and the official Facebook JavaScript SDK";
29     homepage = "https://github.com/pythonforfacebook/facebook-sdk";
30     license = licenses.asl20 ;
31     maintainers = [ ];
32   };