~whereiseveryone/guixrus

04be42001ba05d537ea07bb0700d63424a16a64c — jgart 1 year, 5 months ago d82ced8 pylichat
add failing python-py-lichat
1 files changed, 65 insertions(+), 0 deletions(-)

A guixrus/packages/lichat.scm
A guixrus/packages/lichat.scm => guixrus/packages/lichat.scm +65 -0
@@ 0,0 1,65 @@
;;; GNU Guix --- Functional package management for GNU
;;;
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; This file is not part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (guixrus packages lichat)
  #:use-module (guix build-system python)
  #:use-module (guix build-system copy)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (gnu packages)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages security-token)
  #:use-module (gnu packages check)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages python-check)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-crypto)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages sphinx)
  #:use-module (gnu packages time)
  #:use-module (gnu packages python-xyz))

(define-public python-py-lichat
  (let ((commit "ddefa7b415dca94ed44ce6fd434de921d4d388e9")
        (revision "0"))
    (package
      (name "python-py-lichat")
      (version "0")
      (source
       (origin
         (method git-fetch)
         (uri
          (git-reference
           (url "https://github.com/Shirakumo/py-lichat")
           (commit commit)))
         (file-name (git-file-name name commit))
         (sha256
          (base32 "1s4qfglcrjw06b6lgy34g1lwqfqlkhqilg9xj82fwy1v8mvran5w"))))
      (build-system python-build-system)
      (arguments (list #:tests? #f))
      (home-page "https://github.com/Shirakumo/py-lichat")
      (synopsis "Lichat protocol library for Python3")
      (description
"@code{python-py-lichat} is a library implementing the client-side protocol for
@uref{https://github.com/shirakumo/lichat-protocol, Lichat}.")
      (license license:zlib))))