1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-17 02:14:36 +00:00
nixpkgs/pkgs/development/python-modules/simanneal/default.nix

20 lines
516 B
Nix
Raw Normal View History

{ 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 ];
};
}