pythonPackages.facebook-sdk: 0.3.0 -> 3.0.0 refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-10 13:32:38 -04:00
parent 29d0eec15f
commit de2a995c83
2 changed files with 33 additions and 16 deletions

View File

@@ -0,0 +1,32 @@
{ pkgs
, buildPythonPackage
, fetchPypi
, requests
, python
}:
buildPythonPackage rec {
pname = "facebook-sdk";
version = "3.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "f3d450ec313b62d3716fadc4e5098183760e1d2a9e0434a94b74e59ea6ea3e4d";
};
propagatedBuildInputs = [ requests ];
# checks require network
doCheck = false;
checkPhase = ''
${python.interpreter} test/test_facebook.py
'';
meta = with pkgs.lib; {
description = "Client library that supports the Facebook Graph API and the official Facebook JavaScript SDK";
homepage = https://github.com/pythonforfacebook/facebook-sdk;
license = licenses.asl20 ;
maintainers = [ maintainers.costrouc ];
};
}