python-openid: remove, only keep python3-openid

see discussion on
2e41891e6d
This commit is contained in:
Robin Gloster
2018-06-29 21:37:45 +02:00
parent 9037f608ae
commit 95cb828b27
4 changed files with 6 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, defusedxml }:
{ stdenv, isPy3k, buildPythonPackage, fetchPypi, defusedxml }:
buildPythonPackage rec {
pname = "python3-openid";
@@ -13,6 +13,8 @@ buildPythonPackage rec {
doCheck = false;
disabled = !isPy3k;
meta = with stdenv.lib; {
description = "OpenID support for modern servers and consumers";
homepage = http://github.com/necaris/python3-openid;