linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / github3_py / default.nix
blob8a1eea40c6825d83e89deef5ac66c818618e2095
1 { lib
2 , pythonOlder
3 , buildPythonPackage
4 , fetchPypi
5 , betamax
6 , pytest
7 , betamax-matchers
8 , unittest2
9 , mock
10 , requests
11 , uritemplate
12 , dateutil
13 , jwcrypto
14 , pyopenssl
15 , ndg-httpsclient
16 , pyasn1
19 buildPythonPackage rec {
20   pname = "github3.py";
21   version = "2.0.0";
23   src = fetchPypi {
24     inherit pname version;
25     sha256 = "8dd4ac612fd60cb277eaf6e2ce02f68dda54aba06870ca6fa2b28369bf39aa14";
26   };
28   checkInputs = [ betamax pytest betamax-matchers ]
29     ++ lib.optional (pythonOlder "3") unittest2
30     ++ lib.optional (pythonOlder "3.3") mock;
31   propagatedBuildInputs = [ requests uritemplate dateutil jwcrypto pyopenssl ndg-httpsclient pyasn1 ];
33   postPatch = ''
34     sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py
35   '';
37   # TODO: only disable the tests that require network
38   doCheck = false;
40   meta = with lib; {
41     homepage = "https://github3py.readthedocs.org/en/master/";
42     description = "A wrapper for the GitHub API written in python";
43     license = licenses.bsd3;
44     maintainers = with maintainers; [ pSub ];
45   };