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