Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / oauth / default.nix
blobc74de8d6bd6ed76b5a0057e22a8f41a79f5974b5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "oauth";
8   version = "1.0.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0pdgi35hczsslil4890xqawnbpdazkgf2v1443847h5hy2gq2sg7";
13   };
15   # No tests included in archive
16   doCheck = false;
18   meta = with lib; {
19     homepage = "https://code.google.com/archive/p/oauth/";
20     description = "Library for OAuth version 1.0a";
21     license = licenses.mit;
22   };