gnu: Add python-pulp.

* gnu/packages/python-xyz.scm (python-pulp): New variable.
This commit is contained in:
Ricardo Wurmus 2021-03-16 14:16:57 +01:00
parent c9006a0ee1
commit fa0a18522d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -8007,6 +8007,28 @@ (define-public python-amply
structures.")
(license license:epl1.0)))
(define-public python-pulp
(package
(name "python-pulp")
(version "2.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "PuLP" version))
(sha256
(base32
"1dammrg0f1v0r028i3rpxbf2bsyxmjq0q6ihb4x2wsdki44z3bxj"))))
(build-system python-build-system)
(propagated-inputs
`(("python-amply" ,python-amply)))
(home-page "https://github.com/coin-or/pulp")
(synopsis "Linear Programming modeler")
(description
"PuLP is a Linear Programming modeler written in Python. PuLP can
generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to
solve linear problems.")
(license license:expat)))
(define-public snakemake
(package
(name "snakemake")