summary refs log tree commit diff
path: root/pkgs/development/python-modules/simanneal
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2017-09-22 22:19:20 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2017-09-23 09:58:21 -0400
commitde1480e079974b06d41a5a8c2c3de01320833d16 (patch)
tree80f4ff0b3c923f9f3ada8c99134505feb00daf5e /pkgs/development/python-modules/simanneal
parent1ee60e98e2ff13777412de36fd481b313988b622 (diff)
downloadnixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.tar
nixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.tar.gz
nixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.tar.bz2
nixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.tar.lz
nixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.tar.xz
nixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.tar.zst
nixpkgs-de1480e079974b06d41a5a8c2c3de01320833d16.zip
pythonPackages.simanneal: init at 0.4.1
Diffstat (limited to 'pkgs/development/python-modules/simanneal')
-rw-r--r--pkgs/development/python-modules/simanneal/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/simanneal/default.nix b/pkgs/development/python-modules/simanneal/default.nix
new file mode 100644
index 00000000000..66a9628673b
--- /dev/null
+++ b/pkgs/development/python-modules/simanneal/default.nix
@@ -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 ];
+  };
+}