Remove custom dependencies from guix recipe
guix.scm
| 22 | 22 | (gnu packages version-control) | |
| 23 | 23 | (gnu packages xml)) | |
| 24 | 24 | ||
| 25 | - | (define my-python-android-stringslib | |
| 26 | - | (package | |
| 27 | - | (inherit python-android-stringslib) | |
| 28 | - | (source (origin | |
| 29 | - | (method git-fetch) | |
| 30 | - | (uri (git-reference | |
| 31 | - | (url "https://framagit.org/tyreunom/python-android-strings-lib") | |
| 32 | - | (commit "bea536ba7878ac1b569af45bffa2e4396bf134dc"))) | |
| 33 | - | (file-name (git-file-name "python-android-stringslib" "1.2")) | |
| 34 | - | (sha256 | |
| 35 | - | (base32 | |
| 36 | - | "01adzm17cs5980f7d2222lpgdar5n99chyap7541aa4wc6gm9wqs")))))) | |
| 37 | - | ||
| 38 | - | (define python-lxml-4.6 | |
| 39 | - | (package | |
| 40 | - | (inherit python-lxml) | |
| 41 | - | (version "4.6.4") | |
| 42 | - | (source | |
| 43 | - | (origin | |
| 44 | - | (method url-fetch) | |
| 45 | - | (uri (pypi-uri "lxml" version)) | |
| 46 | - | (sha256 | |
| 47 | - | (base32 "171rs6w8rj5nfg3zzcwgllz6i3csw1ci0glbjajwgw9ixqgvvyfs")))))) | |
| 48 | - | ||
| 49 | 25 | (define-public offlate | |
| 50 | 26 | (package | |
| 51 | 27 | (name "offlate") | |
… | |||
| 82 | 58 | ,(version-major+minor (package-version python-wrapper)) | |
| 83 | 59 | "/site-packages"))))))))) | |
| 84 | 60 | (inputs | |
| 85 | - | `(("python-android-stringslib" ,my-python-android-stringslib) | |
| 61 | + | `(("python-android-stringslib" ,python-android-stringslib) | |
| 86 | 62 | ("python-dateutil" ,python-dateutil) | |
| 87 | 63 | ("python-gitlab" ,python-gitlab) | |
| 88 | - | ("python-lxml" ,python-lxml-4.6) | |
| 64 | + | ("python-lxml" ,python-lxml) | |
| 89 | 65 | ("python-polib" ,python-polib) | |
| 90 | 66 | ("python-pycountry" ,python-pycountry) | |
| 91 | 67 | ("python-pyenchant" ,python-pyenchant) | |