summary refs log blame commit diff
path: root/pkgs/development/python-modules/humanize/default.nix
blob: f1fac28dd93980d7e3d47cbf19d11d1960e16e75 (plain) (tree)























                                                                                
                               


    
{ stdenv
, buildPythonPackage
, fetchPypi
, mock
}:

buildPythonPackage rec {
  version = "0.5.1";
  pname = "humanize";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19";
  };

  buildInputs = [ mock ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python humanize utilities";
    homepage = https://github.com/jmoiron/humanize;
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
  };

}