Commit 728e634a authored by Zhaofeng Li's avatar Zhaofeng Li
Browse files

python3Packages.py3amf: init at 0.8.11

parent 13743dda
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  setuptools,
  fetchFromGitHub,
  defusedxml,
}:

buildPythonPackage rec {
  pname = "py3amf";
  version = "0.8.11";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "StdCarrot";
    repo = "Py3AMF";
    tag = "v${version}";
    hash = "sha256-9zuHh5+ggIjv1LcjpBNHy2yh09KsFpxUdGrtKGm94Zg=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    defusedxml
  ];

  pythonImportsCheck = [
    "pyamf"
  ];

  meta = {
    description = "Action Message Format (AMF) support for Python 3";
    homepage = "https://github.com/StdCarrot/Py3AMF";
    changelog = "https://github.com/StdCarrot/Py3AMF/blob/${src.rev}/CHANGES.txt";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ zhaofengli ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12107,6 +12107,8 @@ self: super: with self; {
  py2vega = callPackage ../development/python-modules/py2vega { };
  py3amf = callPackage ../development/python-modules/py3amf { };
  py3buddy = callPackage ../development/python-modules/py3buddy { };
  py3dns = callPackage ../development/python-modules/py3dns { };