diff options
author | Muriithi Frederick Muriuki | 2017-01-25 16:18:33 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2017-01-25 16:18:33 +0300 |
commit | f09a5ab7fcbe2b0bf32d17c498bf922f79f2026c (patch) | |
tree | 6e3a7f0948ec586ac716ade24ef005b858eedd14 | |
parent | 5b500864cbaf0cecd0737892bb0d1e74f9b7d955 (diff) | |
download | guix-bioinformatics-f09a5ab7fcbe2b0bf32d17c498bf922f79f2026c.tar.gz |
python.scm: Add new package python-pycosat
-rw-r--r-- | gn/packages/python.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 1d96851..af6ef3c 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -684,3 +684,27 @@ numpy package, though some legacy software still uses the older versions.") python stdlib gaps much like pytoolz has for functional programming, pyrsistent has for data structures, or boltons has generally") (license license:isc))) + +(define-public python-pycosat + (package + (name "python-pycosat") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/76/0f/16edae7bc75b79376f2c260b7a459829785f" + "08e463ecf74a8ccdef62dd4a/pycosat-" + version + ".tar.gz")) + (sha256 + (base32 + "1kl3wh1f47rc712n4bmwplbx3fqz3x9i1b587jrbpmvdva4c8f6l")))) + (build-system python-build-system) + (home-page + "https://github.com/ContinuumIO/pycosat") + (synopsis "Bindings to picosat (a SAT solver)") + (description + "This package provides efficient Python bindings to picosat on the C level, i.e. + when importing pycosat, the picosat solver becomes part of the Python process itself") + (license license:expat))) |