1 { lib, fetchFromGitHub, buildPythonPackage, pytest }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "0p75da4nbk6iy16aahl0ilqg605jrr6aa1pzfyd9hc7ak2vs6840";
14 checkInputs = [ pytest ];
15 checkPhase = "pytest tests";
18 description = "A python implementation of the simulated annealing optimization technique";
19 homepage = "https://github.com/perrygeo/simanneal";
20 license = licenses.isc;
21 maintainers = with maintainers; [ veprbl ];