02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
25 lines
556 B
Nix
25 lines
556 B
Nix
{ lib, isPy3k, buildPythonPackage, fetchPypi, defusedxml }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python3-openid";
|
|
version = "3.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1bxf9a3ny1js422j962zfzl4a9dhj192pvai05whn7j0iy9gdyrk";
|
|
};
|
|
|
|
propagatedBuildInputs = [ defusedxml ];
|
|
|
|
doCheck = false;
|
|
|
|
disabled = !isPy3k;
|
|
|
|
meta = with lib; {
|
|
description = "OpenID support for modern servers and consumers";
|
|
homepage = "https://github.com/necaris/python3-openid";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|