nixpkgs/pkgs/development/python-modules/emcee/default.nix

21 lines
451 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, numpy }:
buildPythonPackage rec {
pname = "emcee";
2019-11-02 22:55:44 +00:00
version = "3.0.1";
src = fetchPypi {
inherit pname version;
2019-11-02 22:55:44 +00:00
sha256 = "01mx1w4a7j5p29a3r7ilh9la9n6gnlgwb46m439vrnfgvbvjjy9c";
};
propagatedBuildInputs = [ numpy ];
meta = with stdenv.lib; {
description = "Kick ass affine-invariant ensemble MCMC sampling";
homepage = http://dan.iel.fm/emcee;
license = licenses.mit;
};
}