Merge pull request #29691 from veprbl/simanneal

pythonPackages.simanneal: init at 0.4.1
This commit is contained in:
Jörg Thalheim 2017-09-24 15:58:45 +01:00 committed by GitHub
commit 83440984e3
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, buildPythonPackage, pytest }:
buildPythonPackage rec {
pname = "simanneal";
version = "0.4.1";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "perrygeo";
repo = "simanneal";
rev = version;
sha256 = "12499wvf7ii7cy8z2f1d472p7q9napg1lj0h9xx8l1mbr1hjlp3q";
};
checkInputs = [ pytest ];
checkPhase = "pytest tests";
meta = with stdenv.lib; {
description = "A python implementation of the simulated annealing optimization technique";
homepage = https://github.com/perrygeo/simanneal;
license = licenses.isc;
maintainers = with maintainers; [ veprbl ];
};
}

View File

@ -19535,6 +19535,8 @@ in {
};
};
simanneal = callPackage ../development/python-modules/simanneal { };
simplebayes = buildPythonPackage rec {
name = "simplebayes-${version}";
version = "1.5.8";