3
0
Fork 0
forked from mirrors/nixpkgs

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
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333
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 ];
};
}

View file

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