My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/oauth/default.nix

24 lines
452 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "oauth";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0pdgi35hczsslil4890xqawnbpdazkgf2v1443847h5hy2gq2sg7";
};
# No tests included in archive
doCheck = false;
meta = with lib; {
homepage = "https://code.google.com/archive/p/oauth/";
description = "Library for OAuth version 1.0a";
license = licenses.mit;
};
}