Add transmon and stringslib
more/packages/python.scm
665 | 665 | ||
666 | 666 | (define-public python2-bitstring | |
667 | 667 | (package-with-python2 python-bitstring)) | |
668 | + | ||
669 | + | (define-public python-android-stringslib | |
670 | + | (package | |
671 | + | (name "python-android-stringslib") | |
672 | + | (version "0.1.1") | |
673 | + | (source (origin | |
674 | + | (method url-fetch) | |
675 | + | (uri (pypi-uri "android-stringslib" version)) | |
676 | + | (sha256 | |
677 | + | (base32 | |
678 | + | "00k0nzjvym984805ikq22fzd81cr23j74lhamd50p2vf4yalw76n")))) | |
679 | + | (build-system python-build-system) | |
680 | + | (arguments | |
681 | + | `(#:tests? #f)); no tests | |
682 | + | (native-inputs | |
683 | + | `(("python-sphinx" ,python-sphinx))) | |
684 | + | (home-page "https://framagit.org/tyreunom/python-android-strings-lib") | |
685 | + | (synopsis "") | |
686 | + | (description "") | |
687 | + | (license license:expat))) | |
688 | + | ||
689 | + | (define-public transmon | |
690 | + | (package | |
691 | + | (name "transmon") | |
692 | + | (version "0.1") | |
693 | + | (source (origin | |
694 | + | (method url-fetch) | |
695 | + | (uri (pypi-uri "transmon" version)) | |
696 | + | (sha256 | |
697 | + | (base32 | |
698 | + | "1l7lxp4xwymyb1wqhycqg33ry6gza4660k12xkja04kmw4aqv0az")))) | |
699 | + | (build-system python-build-system) | |
700 | + | (arguments | |
701 | + | `(#:tests? #f)); no tests | |
702 | + | (propagated-inputs | |
703 | + | `(("python-android-stringslib" ,python-android-stringslib) | |
704 | + | ("python-polib" ,python-polib) | |
705 | + | ("python-pygit2" ,python-pygit2))) | |
706 | + | (home-page "https://framagit.org/tyreunom/transmon") | |
707 | + | (synopsis "") | |
708 | + | (description "") | |
709 | + | (license license:agpl3+))) |