python.pkgs.openid: init at 2.2.5/3.1.0
This commit is contained in:
20
pkgs/development/python-modules/python-openid/default.nix
Normal file
20
pkgs/development/python-modules/python-openid/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-openid";
|
||||
name = "${pname}-${version}";
|
||||
version = "2.2.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1vvhxlghjan01snfdc4k7ykd80vkyjgizwgg9bncnin8rqz1ricj";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "OpenID support for modern servers and consumers";
|
||||
homepage = http://github.com/openid/python-openid;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user