Fix derivations
more/packages/binary.scm
| 40 | 40 | #:use-module (more packages python) | |
| 41 | 41 | #:use-module (more packages smt)) | |
| 42 | 42 | ||
| 43 | + | (define python2-bitstring (package-with-python2 python-bitstring)) | |
| 44 | + | (define python2-utils (package-with-python2 python-utils)) | |
| 45 | + | (define python2-progressbar2 (package-with-python2 python-progressbar2)) | |
| 46 | + | (define python2-cachetools (package-with-python2 python-cachetools)) | |
| 47 | + | ||
| 43 | 48 | (define-public python-pyelftools | |
| 44 | 49 | (package | |
| 45 | 50 | (name "python-pyelftools") |
more/packages/python.scm
| 67 | 67 | ||
| 68 | 68 | (define-public python2-cooldict | |
| 69 | 69 | (package-with-python2 python-cooldict)) | |
| 70 | - | ||
| 70 | + | ||
| 71 | 71 | (define-public python-bintrees | |
| 72 | 72 | (package | |
| 73 | 73 | (name "python-bintrees") | |
… | |||
| 92 | 92 | ||
| 93 | 93 | (define-public python2-bintrees | |
| 94 | 94 | (package-with-python2 python-bintrees)) | |
| 95 | - | ||
| 95 | + | ||
| 96 | 96 | (define-public python2-dpkt | |
| 97 | 97 | (package | |
| 98 | 98 | (name "python2-dpkt") | |
… | |||
| 229 | 229 | (define-public python2-ana | |
| 230 | 230 | (package-with-python2 python-ana)) | |
| 231 | 231 | ||
| 232 | + | (define-public python-plumbum | |
| 233 | + | (package | |
| 234 | + | (name "python-plumbum") | |
| 235 | + | (version "1.6.5") | |
| 236 | + | (source (origin | |
| 237 | + | (method url-fetch) | |
| 238 | + | (uri (pypi-uri "plumbum" version)) | |
| 239 | + | (sha256 | |
| 240 | + | (base32 | |
| 241 | + | "1vjbl9qy9fkl3vwiiwpaafmyxfks2sc3b3dhkp4vdgk2pdcv1ayq")))) | |
| 242 | + | (build-system python-build-system) | |
| 243 | + | (native-inputs | |
| 244 | + | `(("pytest" ,python-pytest))) | |
| 245 | + | (home-page "https://plumbum.readthedocs.io/en/latest") | |
| 246 | + | (synopsis "Shell script-like programs in Python") | |
| 247 | + | (description | |
| 248 | + | "Plumbum (Latin for lead, which was used to create pipes back in the day) | |
| 249 | + | is a small yet feature-rich library for shell script-like programs in Python. | |
| 250 | + | The motto of the library is ???Never write shell scripts again???, and thus it | |
| 251 | + | attempts to mimic the shell syntax (???shell combinators???) where it makes sense, | |
| 252 | + | while keeping it all Pythonic and cross-platform.") | |
| 253 | + | (license license:expat))) | |
| 254 | + | ||
| 255 | + | (define-public python2-plumbum | |
| 256 | + | (package-with-python2 python-plumbum)) | |
| 257 | + | ||
| 232 | 258 | (define-public python-cymruwhois | |
| 233 | 259 | (package | |
| 234 | 260 | (name "python-cymruwhois") | |
… | |||
| 435 | 461 | (synopsis "") | |
| 436 | 462 | (description "") | |
| 437 | 463 | (license license:agpl3+))) | |
| 464 | + | ||
| 465 | + | (define-public python-neovim | |
| 466 | + | (package | |
| 467 | + | (name "python-neovim") | |
| 468 | + | (version "0.3.2") | |
| 469 | + | (source (origin | |
| 470 | + | (method url-fetch) | |
| 471 | + | (uri (pypi-uri "pynvim" version)) | |
| 472 | + | (sha256 | |
| 473 | + | (base32 | |
| 474 | + | "01dybk4vs452pljn1q3il5z2sd313ki0lgiglc0xmjc6wp290r6g")))) | |
| 475 | + | (build-system python-build-system) | |
| 476 | + | (propagated-inputs | |
| 477 | + | `(("python-greenlet" ,python-greenlet) | |
| 478 | + | ("python-msgpack" ,python-msgpack))) | |
| 479 | + | (arguments | |
| 480 | + | `(#:tests? #f)) | |
| 481 | + | (home-page "https://github.com/neovim/pynvim") | |
| 482 | + | (synopsis "") | |
| 483 | + | (description "") | |
| 484 | + | (license license:asl2.0))) | |
more/packages/virtualbox.scm
| 236 | 236 | ("lvm2" ,lvm2) | |
| 237 | 237 | ("mesa" ,mesa) | |
| 238 | 238 | ("python" ,python-2) | |
| 239 | - | ("qt" ,qt) | |
| 239 | + | ("qt" ,qtbase) | |
| 240 | 240 | ("openssl" ,openssl) | |
| 241 | 241 | ("sdl" ,sdl))) | |
| 242 | 242 | (arguments |