pythonPackages.simanneal: init at 0.4.1

This commit is contained in:
Dmitry Kalinkin
2017-09-22 22:19:20 -04:00
parent 1ee60e98e2
commit de1480e079
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "simanneal";
version = "0.4.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1ib1hv2adq6x25z13nb4s1asci6dqarpyhpdq144y2rqqff2m01x";
};
meta = {
description = "A python implementation of the simulated annealing optimization technique";
homepage = https://github.com/perrygeo/simanneal;
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ veprbl ];
};
}