forked from mirrors/nixpkgs
pythonPackages.simanneal: init at 0.4.1
This commit is contained in:
parent
1ee60e98e2
commit
de1480e079
19
pkgs/development/python-modules/simanneal/default.nix
Normal file
19
pkgs/development/python-modules/simanneal/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -19512,6 +19512,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
simanneal = callPackage ../development/python-modules/simanneal { };
|
||||||
|
|
||||||
simplebayes = buildPythonPackage rec {
|
simplebayes = buildPythonPackage rec {
|
||||||
name = "simplebayes-${version}";
|
name = "simplebayes-${version}";
|
||||||
version = "1.5.8";
|
version = "1.5.8";
|
||||||
|
|
Loading…
Reference in a new issue