Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 471 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, numpy }: 3 4buildPythonPackage rec { 5 pname = "emcee"; 6 version = "3.0.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "035a44d7594fdd03efd10a522558cdfaa080e046ad75594d0bf2aec80ec35388"; 11 }; 12 13 propagatedBuildInputs = [ numpy ]; 14 15 meta = with stdenv.lib; { 16 description = "Kick ass affine-invariant ensemble MCMC sampling"; 17 homepage = "https://emcee.readthedocs.io/"; 18 license = licenses.mit; 19 }; 20}