nixpkgs/pkgs/development/python-modules/emcee/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

21 lines
471 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, numpy }:
buildPythonPackage rec {
pname = "emcee";
version = "3.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "035a44d7594fdd03efd10a522558cdfaa080e046ad75594d0bf2aec80ec35388";
};
propagatedBuildInputs = [ numpy ];
meta = with stdenv.lib; {
description = "Kick ass affine-invariant ensemble MCMC sampling";
homepage = "https://emcee.readthedocs.io/";
license = licenses.mit;
};
}